已弃用的 Gradle 功能不兼容

Riy*_*rza 4 android-studio android-sdk-manager react-native react-native-android

运行时出现此错误 react-native run-android

日志:

Deprecated Gradle features were used in this build, making it incompatible with Gradle 7.0.

Android Gradle Plugin Version - 3.6.3
Gradle Version- 6.0.1
Run Code Online (Sandbox Code Playgroud)

Son*_*rav 7

  • 更新以下文件:

gradle-wrapper.properties

 distributionUrl=https://services.gradle.org/distributions/gradle-6.0.1-all.zip
Run Code Online (Sandbox Code Playgroud)

android/app/build.gradle

defaultConfig {
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 1
versionName "1.0"
multiDexEnabled true   //add this
}
Run Code Online (Sandbox Code Playgroud)