0

Got a problem with react-native-navigation on upgrade react59 to react61 please help me. check to attach image.enter image description here

1 Answers1

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