diff --git a/src/android/CountlyNative.java b/src/android/CountlyNative.java index 4ef6459..b9d3c5d 100644 --- a/src/android/CountlyNative.java +++ b/src/android/CountlyNative.java @@ -294,8 +294,8 @@ public String logException(JSONArray args) { public String askForNotificationPermission(JSONArray args) { this.log("askForNotificationPermission", args); if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { - String channelName = "Default Name"; - String channelDescription = "Default Description"; + String channelName = "General Notifications"; + String channelDescription = "Receive notifications about important updates and events."; NotificationManager notificationManager = (NotificationManager) context .getSystemService(Context.NOTIFICATION_SERVICE); if (notificationManager != null) {