当前位置:   article > 正文

Install Failed. Please check your network connection and try again._error: installation of unzip failed, please check

error: installation of unzip failed, please check your network.

1、当我们在SDK的tool里面下载更新时,出现了下面的问题:


解决的方法很简单,在跟项目的build.gradle里面加入google(),比如下面这样:

 buildscript {
    
    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.0.1'
        

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

allprojects {
    repositories {
        google()
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
2、但是 关于as版本过低会出现上面的问题,就是说低版本as没有google()库,会出现这个问题:

Could not find method google() for arguments [] on repository container.

解决的方法就是把google()换成
maven{url 'https://maven.google.com'}
解决!
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/686128
推荐阅读
相关标签
  

闽ICP备14008679号