Install Failed. Please check your network connection and try again.you may creating your project.
阿新 • • 發佈:2018-12-15
前段時間安卓方面遇到了瓶頸,就擱置了一段時間在忙著其他事情。這兩天突然又來了興致,翻到了一個特別好的原始碼,但是在匯入到我的android studio裡面的時候出現了一點問題,可能是版本的問題。
錯誤詳情如下:
這種錯誤網上解決方法很多,但是可能錯誤不太一樣吧,有的對於我的錯誤就不太適用。下面我就把我的解決方法粘貼出來供大家參考:
①先把工程調節到android格式:
②展開選單最下方的Gradle,點選Project的Gradle
③修改裡面的程式碼如下:
buildscript { repositories { jcenter() } dependencies { classpath 'com.android.tools.build:gradle:2.1.0' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } } allprojects { repositories { // google() maven { url 'https://maven.google.com/' name 'Google'} jcenter() } } task clean(type: Delete) { delete rootProject.buildDir }
其中最主要修改:
allprojects {
repositories {
// google()
maven { url 'https://maven.google.com/'
name 'Google'}
jcenter()
}
}
然後重新執行工程就可以了。