溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Error:Could not find common.jar

發(fā)布時(shí)間:2020-08-07 11:13:03 來源:網(wǎng)絡(luò) 閱讀:1187 作者:591XT_XYZ 欄目:移動(dòng)開發(fā)

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

打開之前寫的安卓程序,運(yùn)行,發(fā)現(xiàn)提示上述內(nèi)容,很是奇怪,之前都好好的,為啥突然之間就變這樣了,啥都沒動(dòng)啊,clean一下,再運(yùn)行還是這樣,只好求助谷歌了,谷歌得到的答案也是相當(dāng)出人意料,原因是因?yàn)楣雀璧膯栴}。

解決辦法:

就是在build.gradle里面的dependencies中的這部分內(nèi)容

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.+'

乍一看沒啥問題的,之前的東西啥都沒有動(dòng)啊,當(dāng)時(shí)我也是這樣想的,不應(yīng)該啊,之前的都沒問題,其實(shí)是谷歌搗鬼了,以后這里面不能帶+號,必須指定詳細(xì)的版本才行,可能你會問 + 號在哪?看好了

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

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

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

再次運(yùn)行OK沒毛病。 


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI