0
我瞭解到支持庫26支持使用emojis。但是,當我使用支持庫如下:Emoji兼容性支持庫不能在Android Studio中使用
compile "com.android.support:support-emoji:26.0.1"
我得到這個錯誤:
,當我點擊Install Repository and sync project
沒有任何反應。有誰知道什麼是錯的?
我瞭解到支持庫26支持使用emojis。但是,當我使用支持庫如下:Emoji兼容性支持庫不能在Android Studio中使用
compile "com.android.support:support-emoji:26.0.1"
我得到這個錯誤:
,當我點擊Install Repository and sync project
沒有任何反應。有誰知道什麼是錯的?
您需要在的build.gradle文件中添加谷歌儲存庫像下面爲您的應用程序,使其工作: -
allprojects {
repositories {
jcenter()
maven {
url "https://maven.google.com"
}
}
}
還要檢查以下網址獲取更多信息: -
https://developer.android.com/topic/libraries/support-library/setup.html
It works.Thanks –
可能的重複[無法解決:com.android.support:appcompat-v7:26.0.0](https://stackoverflow.com/questions/45357000/failed-to-resolve-com-android-supportappcompat-v726-0 -0) –