react-native-fcm
react-native-fcm copied to clipboard
Android app crashes at starting after using the react-native-fcm
- What version of RN and react-native-fcm are you running? I am using latest react-native-fcm
- What device are you using? (e.g iOS9 emulator, Android 6 device)? Android 6 device , Android 7 device (Both device)
Add config in android/build.gradle
allprojects { repositories { configurations.all { resolutionStrategy { // Add force (11.4.0 is version you want to use) force 'com.google.firebase:firebase-messaging:11.4.0' force 'com.google.firebase:firebase-core:11.4.0' force 'com.google.android.gms:play-services-gcm:11.4.0' } } } }
@TarunDas005 Yes i used for resolve this problem https://github.com/evollu/react-native-fcm/issues/857 and after that when my app is launching it's crashes at starting
@manojbhardwaj You need send more information (Log exception)
ok let me check sir
I'm facing the same problem. My output from adb logcat is:
com.google.android.apps.gsa.shared.exception.GsaIOException: Error code: 393238 | Buffer overflow, no available space.
You can check your problem in here https://stackoverflow.com/questions/43164577/looping-error-on-android-emulator/45462655#45462655
Same issue
@TarunDas005 You saved my life. Thanks :)