Android——gradle找不到的坑


升級了 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 {
}

 

module 之間依賴找不到被依賴模塊的庫的問題,添加

dirs 'libs','../app/libs'
其中,app 中被依賴模塊
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"}
        flatDir{
            dirs 'libs','../app/libs'
        }

    }
}

task clean(type: Delete) {
        delete rootProject.buildDir
}

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

dependencies {
}

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM