Caused by: org.gradle.internal.resolve.ModuleVersionNotFoundException: Could not find...

版权声明:本文为延成原创文章,转载请标明出处

问题复现

Caused by: org.gradle.internal.resolve.ModuleVersionNotFoundException: Could not find…

android studio 打开新项目时出现。

问题解决

打开build.gradle文件,加入代码 maven { url ‘https://maven.google.com’ } 如下所示:

 repositories {
 		//加入代码
        maven { url 'https://maven.google.com' }
        jcenter()
        google()
    }
allprojects {
    repositories {
		//加入代码
        maven { url 'https://maven.google.com' }
        jcenter()
        google()
    }
}

重新编译看问题是否解决,如果没有再接着往下看.

点击File->Settings进入设置界面,勾选“Enable embedded Maven repository”(最新版本的编译器可忽略此设置)
在这里插入图片描述
如果构建项目时拉取不到gradle资源,可以将地址修改成阿里云的国内镜像,方式一和方式二,任选一种即可.

allprojects {
    repositories {
		//方式一
		maven{ url 'https://maven.aliyun.com/repository/google'}
		maven{ url 'https://maven.aliyun.com/repository/jcenter'}
		//方式二
		maven{ url 'http://maven.aliyun.com/nexus/content/groups/public/'}
    }
}

重新编译问题解决。

  • 9
    点赞
  • 12
    收藏
    觉得还不错? 一键收藏
  • 13
    评论
评论 13
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值