1. 程式人生 > >Error:Could not find common.jar

Error:Could not find common.jar

Error:Could not fin not find common.ja

Error:Could not find common.jar (android.arch.core:common:1.0.0).

Searched in the following locations: https://jcenter.bintray.com/android/arch/core/common/1.0.0/common-1.0.0.jar

打開之前寫的安卓程序,運行,發現提示上述內容,很是奇怪,之前都好好的,為啥突然之間就變這樣了,啥都沒動啊,clean一下,再運行還是這樣,只好求助谷歌了,谷歌得到的答案也是相當出人意料,原因是因為谷歌的問題。

解決辦法:

就是在build.gradle裏面的dependencies中的這部分內容

compile 'com.hyphenate:hyphenate-sdk-lite:3.3.4'
compile 'com.umeng.analytics:analytics:latest.integration'
compile 'com.jakewharton:butterknife:8.8.1'
compile 'com.android.support:appcompat-v7:26.+'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.android.support:design:26.+'


乍一看沒啥問題的,之前的東西啥都沒有動啊,當時我也是這樣想的,不應該啊,之前的都沒問題,其實是谷歌搗鬼了,以後這裏面不能帶+號,必須指定詳細的版本才行,可能你會問 + 號在哪?看好了

compile 'com.android.support:appcompat-v7:26.+'
compile 'com.android.support:design:26.+'

就是這兩個的原因,因為這是之前弄得,沒問題,後來谷歌必須要求指定版本,不能帶 + 號,也許你還會問把 + 號去掉我也不知道是哪個版本啊,很簡單的,直接整成0就行了,

compile 'com.android.support:appcompat-v7:26.0.0'
compile 'com.android.support:design:26.0.0'

再次運行OK沒毛病。


Error:Could not find common.jar