内置Android应用需要更新到Gradel插件的latsets版本

时间:2019-07-17 10:45:06

标签: android-studio react-native android-gradle

我目前正在React Native(Android Studio)中构建一个应用程序,现在我想生成一个APK文件,以查看其在手机上的外观。 (仿真器工作正常),但我也想在手机上看到它。

每次我要构建-> Build Bundles我都收到Gradle插件的错误。所以我不能继续

我已经在React本机中升级了gradle,我已经升级了android Studio,并在表单和堆栈上搜索了很多内容,而没有任何答案。

[项目根目录] /build.gradle

buildscript {
    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.4.2'

    } }

[项目根目录] /android/build.gradle

buildscript {
    ext {
        buildToolsVersion = "28.0.3"
        minSdkVersion = 16
        compileSdkVersion = 28
        targetSdkVersion = 28
        supportLibVersion = "28.0.0"
    }
    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath('com.android.tools.build:gradle:3.4.2')

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        mavenLocal()
        maven {
            // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
            url("$rootDir/../node_modules/react-native/android")
        }
        maven {
            // Android JSC is installed from npm
            url("$rootDir/../node_modules/jsc-android/dist")
        }

        google()
        jcenter()
    }
}

仍然出现相同的错误

1 个答案:

答案 0 :(得分:0)

在您 APP Modle.Gradle 中 尝试替换此行

classpath'com.android.tools.build:gradle:3.4.2' 收件人 classpath'com.android.tools.build:gradle:3.2.1'