Architecture Component build GoogleSimples build失敗的解決辦法

weixin_34247155發表於2017-06-06

Google IO 2017大會上推出了全新的Google專案新架構Architecture Component,對Android專案開發指導意義重大,最近一直在研究,剛下完專案就發現一直build失敗

經排查發現是

allprojects {
    repositories {
        jcenter()
        maven {
            url "https://maven.google.com"
        }
    }
}

程式碼中的https://maven.google.com無法訪問導致build失敗,同時GoogleSimple以及最新的AndroidStudio 3.0也是因為此問題導致一直build錯誤;

解決辦法:

https://maven.google.com換成https://dl.google.com/dl/android/maven2/即可

參考:

http://blog.csdn.net/a06_kassadin/article/details/72796696


Architecture Component推薦學習資料:

App開發架構指南(谷歌官方文件譯文)
[http://www.jcodecraeer.com/a/anzhuokaifa/androidkaifa/2017/0523/7963.html]

在專案中新增新增Architecture Components(
http://www.jcodecraeer.com/a/anzhuokaifa/androidkaifa/2017/0523/7964.html)

Google #io17學習清單(http://www.jcodecraeer.com/a/anzhuokaifa/androidkaifa/2017/0603/8035.html)

相關文章