zoukankan      html  css  js  c++  java
  • 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 {
    }
  • 相关阅读:
    小白的Python之路_day1
    Vue---tab切换时不刷新
    Vue---第十五章使用VScode编写第一个脚本
    Vue---第十四章visual studio code使用
    Vue---第十三章基础运算和v-model
    Vue---第十二章批量下载模块
    vue---第十一章全局依赖环境区分
    Vue---第十章全局变量
    Vue---第九章NPM
    hadoop-Rpc使用实例
  • 原文地址:https://www.cnblogs.com/xingchong/p/13234277.html
Copyright © 2011-2022 走看看