I am working on a react native app and trying to upgrade the react native version. However, I am facing the issue:
could not find com.facebook.react:flipper-integration
Please let me know if you have any idea. Thank you!
I am working on a react native app and trying to upgrade the react native version. However, I am facing the issue:
could not find com.facebook.react:flipper-integration
Please let me know if you have any idea. Thank you!
2
Answers
After researching about the issue. I found that Facebook removes
com.facebook.react:flipper-integration
.Therefore, we should also remove these lines:
implementation("com.facebook.react:flipper-integration")
import com.facebook.react.flipper.ReactNativeFlipper
ReactNativeFlipper.initializeFlipper(this, reactNativeHost.reactInstanceManager)
please follow these steps and let me know its result.
-Ensure there are no typos in your dependency declarations.
I hope it’ll be helpful to solve your problem.