下载和安装Gradle,然后在Android Studio中配置Gradle的路径。 步骤1: 在文件中下载Gradle,例如gradle-6.5-all.zip。 步骤2:解压缩Gradle并将其放置在一个易于访问的文件夹中(如C:\ Gradle)。 步骤3: 在Android Studio中打开 File > Settings > Build, Execution, Deployment > Gradle菜单。 步骤4:选择 Use local gradle distribution,并设置Gradle home路径。 代码示例:
// 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:4.1.0" } }
allprojects { repositories { google() jcenter() } }
task clean(type: Delete) { delete rootProject.buildDir }