Jeff Steinmetz
Jeff Steinmetz
I assume this is a typo? should be `.flow` files. `.job` files have not been mentioned up to this point in the documentation.
Here is a working example of the Azkaban source / Gradle / node working with Apple Silicon M1 (ARM architecture) # prerequisite You must install the ARM versions of the...
In the sample application, is there any documentation as to why `android.permission.SYSTEM_ALERT_WINDOW` is required as a permission? https://github.com/invertase/react-native-firebase-starter/blob/master/android/app/src/main/AndroidManifest.xml#L7 It is not listed in the docs https://rnfirebase.io/docs/v5.x.x/notifications/android In the docs, it...
at these 2 lines there is sample data hard coded into the message handlers: https://github.com/Countly/countly-sdk-react-native/blob/master/Countly.js#L965 https://github.com/Countly/countly-sdk-react-native/blob/master/Countly.js#L722 The data should be passed through with exactly what was sent in from the...
Description: The countly react-native-sdk makes an assumption that all data only messages via the `OnMessage()` handler should be displayed, and that they came from countly. To be on par with...
The instructions at: https://resources.count.ly/docs/react-native suggest addeding: `[[UNUserNotificationCenter currentNotificationCenter] setDelegate:self];` and ``` -(void) userNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(void (^)(void))completionHandler { [[RNFirebaseMessaging instance] didReceiveRemoteNotification:response.notification.request.content.userInfo]; completionHandler(); } ``` This fails the build, UNUserNotificationCenter...