1

有没有办法更新 Gradle 的版本,因为 AIDE 中使用的是版本 1。

很多功能不适用。

   // Top-level build file where you can add configuration options common to all sub-projects/modules.

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

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

    allprojects {
        repositories {
            jcenter()
        }
    }
4

2 回答 2

0

尝试删除该行:

classpath 'com.android.tools.build:gradle:1.+' 

如果这没有帮助,请将此行复制到 build.gradle:

classpath 'com.android.tools.build:gradle:3.0.1'
于 2018-07-01T09:26:16.620 回答
0

将 android 构建工具更新到最新版本:

classpath 'com.android.tools.build:gradle:3.1.3'

还要添加google()您的构建脚本。因此,更新您现有的代码,如下所示:

// Top-level build file where you can add configuration options common to all sub-projects/modules.

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

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

    allprojects {
        repositories {
            google()
            jcenter()
        }
    }
于 2018-07-01T09:40:56.283 回答