We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2ee762 commit d0e1667Copy full SHA for d0e1667
app/src/main/java/to/bitkit/ui/MainActivity.kt
@@ -1,5 +1,6 @@
1
package to.bitkit.ui
2
3
+import android.app.NotificationManager
4
import android.content.Intent
5
import android.os.Bundle
6
import androidx.activity.compose.setContent
@@ -70,10 +71,11 @@ class MainActivity : FragmentActivity() {
70
71
72
initNotificationChannel()
73
initNotificationChannel(
- // TODO EXTRACT TO Strings
74
+ // TODO Transifex
75
id = CHANNEL_ID_NODE,
76
name = "Lightning node notification",
77
desc = "Channel for LightningNodeService",
78
+ importance = NotificationManager.IMPORTANCE_LOW
79
)
80
startForegroundService(Intent(this, LightningNodeService::class.java))
81
installSplashScreen()
0 commit comments