Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions android/gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
android.disableAutomaticComponentCreation=true
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ Notification buildNotification(Context context, Bundle notificationConfig,Notifi
return null;
}
Intent notificationIntent = new Intent(context, mainActivityClass);
PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, notificationIntent, 0);
PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, notificationIntent, PendingIntent.FLAG_IMMUTABLE);

Notification.Builder notificationBuilder;

Expand Down