【问题标题】:Deprecated Gradle features not compatible已弃用的 Gradle 功能不兼容
【发布时间】:2020-09-03 21:43:20
【问题描述】:
我在运行 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
【问题讨论】:
标签:
react-native
android-studio
react-native-android
android-sdk-manager
【解决方案1】:
gradle-wrapper.properties
distributionUrl=https://services.gradle.org/distributions/gradle-6.0.1-all.zip
android/app/build.gradle
defaultConfig {
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 1
versionName "1.0"
multiDexEnabled true //add this
}