Skip to content

Commit d0e1667

Browse files
committed
fix: reduce node notification channel importance
1 parent a2ee762 commit d0e1667

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

app/src/main/java/to/bitkit/ui/MainActivity.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
package to.bitkit.ui
22

3+
import android.app.NotificationManager
34
import android.content.Intent
45
import android.os.Bundle
56
import androidx.activity.compose.setContent
@@ -70,10 +71,11 @@ class MainActivity : FragmentActivity() {
7071

7172
initNotificationChannel()
7273
initNotificationChannel(
73-
// TODO EXTRACT TO Strings
74+
// TODO Transifex
7475
id = CHANNEL_ID_NODE,
7576
name = "Lightning node notification",
7677
desc = "Channel for LightningNodeService",
78+
importance = NotificationManager.IMPORTANCE_LOW
7779
)
7880
startForegroundService(Intent(this, LightningNodeService::class.java))
7981
installSplashScreen()

0 commit comments

Comments
 (0)