小编Ash*_*hew的帖子

在 React Native 0.59 上将目标 sdk 升级到 29

我当前在 React Native 上的 android 目标 sdk 是 28,但 Play Store 显示将其更新为 29。所以我在 android/build.gradle 中进行了以下更改

buildscript {

    ext {
       googlePlayServicesVersion = "16.0.0"
        firebaseVersion = "17.3.4"
        buildToolsVersion = "28.0.3" //changed to 29.0.3
        minSdkVersion = 16
        compileSdkVersion = 28 //changed to 29
        targetSdkVersion = 28 // changed to 29
        supportLibVersion = "28.0.0"
    }
}
Run Code Online (Sandbox Code Playgroud)

但是现在当我运行 npx react-native run-android 时出现以下错误。

Could not resolve all files for configuration ':app:debugCompileClasspath'.
> Could not find com.android.support:support-v4:29.0.0.
  Required by:
      project :app
      project :app > project :react-native-firebase
> …
Run Code Online (Sandbox Code Playgroud)

sdk android firebase react-native react-native-firebase

9
推荐指数
1
解决办法
1597
查看次数