LoginSignup
4
0

More than 5 years have passed since last update.

error: React Native version mismatch

参照:React Native version mismatch (on app that was working a couple of hours ago)

エラー内容

エミュレータは起動するが、React Native version mismatchのエラーがでる

対処

app/build.gradledependenciesに下記を追加する

使用しているreact-native version: 0.54.4の場合

compile ("com.facebook.react:react-native:0.54.4") { force = true }

app/build.gradle
dependencies {
 ...
   compile ("com.facebook.react:react-native:0.54.4") { force = true }
 ...
}
4
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
0