diff --git a/index.android.js b/index.android.js index e98936d8c4c3e0b6266cd241e1fee9ff9b5060fd..4d3bca1b2fdaffbcf6b4565aeb4e18f9ef215834 100644 --- a/index.android.js +++ b/index.android.js @@ -46,7 +46,7 @@ export class NotificationsAndroid { } static localNotification(notification: Object) { - const id = Date.now() | 0; // Bitwise-OR forces value onto a 32bit limit + const id = Math.random() * 100000000 | 0; // Bitwise-OR forces value onto a 32bit limit RNNotifications.postLocalNotification(notification, id); return id; }