diff --git a/android/AndroidManifest.xml b/android/AndroidManifest.xml
index 9a2cffd5..1741be1f 100755
--- a/android/AndroidManifest.xml
+++ b/android/AndroidManifest.xml
@@ -14,6 +14,7 @@
+
= Build.VERSION_CODES.O) ? createNotificationChannel() : "";
+
// Set the info for the views that show in the notification panel.
- Notification notification = new Notification.Builder(this)
- .setSmallIcon(R.drawable.itoopie_notification_icon) // the status icon
- .setTicker(text) // the status text
- .setWhen(System.currentTimeMillis()) // the time stamp
- .setContentTitle(getText(R.string.app_name)) // the label of the entry
- .setContentText(text) // the contents of the entry
- .setContentIntent(contentIntent) // The intent to send when the entry is clicked
+ Notification notification = new NotificationCompat.Builder(this, channelId)
+ .setOngoing(true)
+ .setSmallIcon(R.drawable.itoopie_notification_icon) // the status icon
+ .setPriority(Notification.PRIORITY_DEFAULT)
+ .setCategory(Notification.CATEGORY_SERVICE)
+ .setTicker(text) // the status text
+ .setWhen(System.currentTimeMillis()) // the time stamp
+ .setContentTitle(getText(R.string.app_name)) // the label of the entry
+ .setContentText(text) // the contents of the entry
+ .setContentIntent(contentIntent) // The intent to send when the entry is clicked
.build();
// Send the notification.
//mNM.notify(NOTIFICATION, notification);
startForeground(NOTIFICATION, notification);
- shown=true;
+ shown = true;
+ }
+
+ @RequiresApi(Build.VERSION_CODES.O)
+ private synchronized String createNotificationChannel() {
+ String channelId = getString(R.string.app_name);
+ CharSequence channelName = "I2Pd service";
+ NotificationChannel chan = new NotificationChannel(channelId, channelName, NotificationManager.IMPORTANCE_LOW);
+ //chan.setLightColor(Color.PURPLE);
+ chan.setLockscreenVisibility(Notification.VISIBILITY_PRIVATE);
+ NotificationManager service = (NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE);
+ service.createNotificationChannel(chan);
+ return channelId;
}
- private static final DaemonSingleton daemon = DaemonSingleton.getInstance();
+ private static final DaemonSingleton daemon = DaemonSingleton.getInstance();
}