Add Google Maven repository and sync project

Posted 晴耕雨读

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Add Google Maven repository and sync project相关的知识,希望对你有一定的参考价值。

android studio导入一个项目时,可以会报
Add Google Maven repository and sync project
有可能的解决方法如下:
在项目的build.gradle中修改如下:

buildscript {
    repositories {
        maven{ url ‘http://maven.aliyun.com/nexus/content/groups/public/‘}
        //jcenter()
        google()
    }
    dependencies {
        classpath ‘com.android.tools.build:gradle:3.1.4‘

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

allprojects {
    repositories {
        google()
        maven{ url ‘http://maven.aliyun.com/nexus/content/groups/public/‘}
        //jcenter()
    }
}

 


当然报这个错有可能修改这里还没有好,但是哥这次修改这样就好了,哈哈
————————————————
版权声明:本文为CSDN博主「无风之翼」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/peachs885090/article/details/103048555

以上是关于Add Google Maven repository and sync project的主要内容,如果未能解决你的问题,请参考以下文章

maven之构建多模块maven工程

Maven deploy 怎么配置

github创建maven项目过程

批量上传 Jar 包到 Maven 私服的工具

Linux_Ubuntu安装add-apt-repository的老生常谈

Spring源码解读——源码下载及编译