Skip to content
This repository has been archived by the owner on Dec 4, 2022. It is now read-only.

Commit

Permalink
Firebase messaging (#23) close #18
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitriy-chernysh authored Mar 31, 2020
1 parent e7a2c5e commit 62b26fa
Show file tree
Hide file tree
Showing 12 changed files with 109 additions and 6 deletions.
9 changes: 8 additions & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
android:theme="@style/AppTheme.Splash">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
Expand All @@ -31,6 +30,14 @@
<action android:name="android.intent.action.VIEW" />
</intent-filter>
</activity>

<service
android:name="com.mobiledevpro.remote.service.notification.FirebaseMessagingService"
android:exported="false">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT" />
</intent-filter>
</service>
</application>

</manifest>
29 changes: 24 additions & 5 deletions app/src/main/java/com/mobiledevpro/app/common/App.kt
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
package com.mobiledevpro.app.common

import android.app.Application
import android.util.Log
import com.google.android.gms.tasks.OnCompleteListener
import com.google.firebase.iid.FirebaseInstanceId
import com.mobiledevpro.app.BuildConfig
import com.mobiledevpro.app.di.*
import com.mobiledevpro.data.LOG_TAG_DEBUG
import com.testfairy.TestFairy
import org.koin.android.ext.koin.androidContext
import org.koin.core.context.startKoin
Expand All @@ -27,13 +31,13 @@ class App : Application() {
initKoin()
initTimber()

/*
if (BuildConfig.DEBUG) {
initStetho()
initFlipper()
}
// initStetho()
// initFlipper()

*/
//its only for debug
retrieveFirebaseToken()
}

//Beta testing (where release is published)
TestFairy.begin(this, "6f9121c053a0dabdfa96dbb31c5c128860c119b3");
Expand All @@ -54,6 +58,21 @@ class App : Application() {
dataRemoteModule
)

private fun retrieveFirebaseToken() {
FirebaseInstanceId.getInstance().instanceId
.addOnCompleteListener(OnCompleteListener { task ->
if (!task.isSuccessful) {
Log.d(LOG_TAG_DEBUG, "retrieveFirebaseToken failed", task.exception)
return@OnCompleteListener
}

// Get new Instance ID token
val token = task.result?.token

Log.d(LOG_TAG_DEBUG, "Firebase token: $token")
})
}

/*
private fun initStetho() {
Stetho.initializeWithDefaults(this)
Expand Down
2 changes: 2 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ ext {
flipperVersion = '0.33.1'
soloaderVersion = "0.8.2"
testfairyVersion = '1.+@aar'
firebaseMessagingVersion = "20.1.4"

deps = [
"multidex" : "androidx.multidex:multidex:$multidexVersion",
Expand All @@ -80,6 +81,7 @@ ext {
"firebasePerformance" : "com.google.firebase:firebase-perf:$firebasePerfVersion",
"crashlytics" : "com.google.firebase:firebase-crashlytics:$crashlyticsVersion",
"firebaseAnalytics" : "com.google.firebase:firebase-analytics:$analyticsVersion",
"fcm" : "com.google.firebase:firebase-messaging:$firebaseMessagingVersion",
"coreKtx" : "androidx.core:core-ktx:$coreKtxVersion",
"kotlin" : "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlinVersion",

Expand Down
3 changes: 3 additions & 0 deletions data-remote/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,7 @@ dependencies {
implementation deps.retrofitGsonConverter
implementation deps.retrofitRx
implementation deps.okhttpLoggingInterceptor

//Firebase messaging
implementation deps.fcm
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
package com.mobiledevpro.remote.service.notification

import android.app.NotificationChannel
import android.app.NotificationManager
import android.content.Context
import android.media.RingtoneManager
import android.os.Build
import android.util.Log
import androidx.core.app.NotificationCompat
import com.google.firebase.messaging.FirebaseMessagingService
import com.google.firebase.messaging.RemoteMessage
import com.mobiledevpro.data.LOG_TAG_DEBUG
import com.mobiledevpro.data.NOTIFICATIONS_CHANNEL_ID_MAIN_NOTIFICATIONS
import com.mobiledevpro.data.NOTIFICATIONS_CHANNEL_NAME_MAIN_NOTIFICATIONS
import com.mobiledevpro.remote.R

/**
* Class for displaying status bar notifications from Firebase (FCM)
*
* Created by Dmitriy Chernysh on Mar 31, 2020.
*
* http://androiddev.pro
*
*/
class FirebaseMessagingService : FirebaseMessagingService() {

private var notificationNumber = 0

override fun onMessageReceived(msg: RemoteMessage) {
Log.d(LOG_TAG_DEBUG, "From: ${msg.from}")

msg.notification?.let {
Log.d(LOG_TAG_DEBUG, "Message Notification Title: ${it.title}")
Log.d(LOG_TAG_DEBUG, "Message Notification Body: ${it.body}")
sendNotification(it.title, it.body)
}
}


private fun sendNotification(title: String?, messageBody: String?) {
if (title == null && messageBody == null) return

notificationNumber++

val defaultSoundUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION)
val notificationBuilder = NotificationCompat.Builder(this, NOTIFICATIONS_CHANNEL_ID_MAIN_NOTIFICATIONS)
.setSmallIcon(R.drawable.ic_notification)
.setContentTitle(title ?: "")
.setContentText(messageBody ?: "")
.setAutoCancel(true)
.setSound(defaultSoundUri)

val notificationManager = getSystemService(Context.NOTIFICATION_SERVICE) as NotificationManager

// Since android Oreo notification channel is needed.
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
val channel = NotificationChannel(
NOTIFICATIONS_CHANNEL_ID_MAIN_NOTIFICATIONS,
NOTIFICATIONS_CHANNEL_NAME_MAIN_NOTIFICATIONS,
NotificationManager.IMPORTANCE_DEFAULT)
notificationManager.createNotificationChannel(channel)
}

notificationManager.notify(notificationNumber, notificationBuilder.build())
}

}
3 changes: 3 additions & 0 deletions data/src/main/java/com/mobiledevpro/data/Constants.kt
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,6 @@ package com.mobiledevpro.data

const val LOG_TAG_DEBUG = "app.debug"
const val LOG_TAG_ERROR = "app.error"

const val NOTIFICATIONS_CHANNEL_ID_MAIN_NOTIFICATIONS = "1001"
const val NOTIFICATIONS_CHANNEL_NAME_MAIN_NOTIFICATIONS = "Main notifications"
Binary file added data/src/main/res/drawable-hdpi/ic_notification.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added data/src/main/res/drawable-mdpi/ic_notification.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions data/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
<resources>
<string name="app_name">data</string>

<string name="label_channel_notification"></string>
</resources>

0 comments on commit 62b26fa

Please sign in to comment.