码迷,mamicode.com
首页 > 移动开发 > 详细

Android——gradle找不到的坑

时间:2020-07-04 12:01:04      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:tools   ons   modules   classpath   type   depend   color   project   div   

升级了 AdroidStudio到3.6.3,总是报找不到 gradle3.6.3

修改工程的 build.gradle,加入 google() 再同步就可以了

ext {
    var = ‘3.6.3‘
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
    repositories {
        jcenter()
        google()
    }
    dependencies {
        classpath ‘com.android.tools.build:gradle:3.6.3‘

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}
    allprojects {
        repositories {
            jcenter()
            google()
            //maven { url "https://maven.google.com"}
        }
    }
    task clean(type: Delete) {
        delete rootProject.buildDir
}

//android {
//    compileSdkVersion 28
//    buildToolsVersion ‘28.0.3‘
//}

dependencies {
}

 

Android——gradle找不到的坑

标签:tools   ons   modules   classpath   type   depend   color   project   div   

原文地址:https://www.cnblogs.com/xingchong/p/13234277.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!