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
As previously pointed out in #13 (comment) , ReactNativeFlipper breaks streaming completely.
With Expo SDK50, the nature of these files have changed:
React Native 0.73 changed from Java to Kotlin for Android Main* classes: MainApplication.java/MainActivity.java are now MainApplication.kt/MainActivity.kt. If you depend on any config plugins that use dangerous modifications to change these files, they may need to be updated for SDK 50 support.
In android/app/src/main/java/com/[name]/[app]/MainApplication.kt, here is the ReactNativeFlipper initialization:
if (BuildConfig.DEBUG) {
ReactNativeFlipper.initializeFlipper(this, reactNativeHost.reactInstanceManager)
}
Simply comment it out and streaming will work once more.
As previously pointed out in #13 (comment) , ReactNativeFlipper breaks streaming completely.
With Expo SDK50, the nature of these files have changed:
In
android/app/src/main/java/com/[name]/[app]/MainApplication.kt
, here is the ReactNativeFlipper initialization:Simply comment it out and streaming will work once more.
Though the issue is fixed on my end, I am leaving this here for the few people who come across this problem.
The text was updated successfully, but these errors were encountered: