You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I try to build my app, I am getting the following:
/Users/hackeron/Development/Tether/tether-android/node_modules/react-native-fcm/android/src/main/java/com/evollu/react/fcm/MessagingService.java:8: error: package android.support.v4.content does not exist
import android.support.v4.content.LocalBroadcastManager;
^
When openning an issue, please include following information for better support
react-native-fcm 16.2.4 and react-native 0.61.5
Android Studio 3.6.2 on Mac Catalina
I'm stuck on the build process
Any ideas?
The text was updated successfully, but these errors were encountered:
@rgaufman This library does not support AndroidX yet but React Native 0.61 uses AndroidX so you have to go into the source code (the file that is throwing out the error above), delete that import line and Android Studio will suggest a new import for LocalBroadcastManager that fits AndroidX.
As I remember there're about 4 files need changing.
After done with that, you can either do the following:
Edit the files every time you update your package.json.
Fork the library to your account, edit the files and install the library from your repo's link so you don't have worry about Working only for 1st message. #1.
When I try to build my app, I am getting the following:
When openning an issue, please include following information for better support
Any ideas?
The text was updated successfully, but these errors were encountered: