Got a problem with react-native-navigation on upgrade react59 to react61 please help me.
check to attach image.
Asked
Active
Viewed 300 times
0

Avneesh Kumar
- 33
- 7
-
Have you added `missingDimensionStrategy "RNN.reactNativeVersion", "reactNative60"` to your `build.gradle` file? – Reza Ghorbani Oct 30 '19 at 08:27
1 Answers
0
Please add missingDimensionStrategy "RNN.reactNativeVersion", "reactNative60" in android/app/build.gradle file.
android {
...
defaultConfig {
applicationId "com.yourproject"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
missingDimensionStrategy "RNN.reactNativeVersion", "reactNative60"// add this line
versionCode 1
versionName "1.0"
...
}
...
}

Zeeshan Ansari
- 9,657
- 3
- 26
- 27