表情符号兼容性的支持库无法在Android Studio中使用

时间:2017-08-31 02:47:42

标签: android

我了解到支持库26支持使用表情符号。但是当我使用支持库时如下:

Install Repository and sync project

我收到此错误:

enter image description here

当我点击 cmd /V /E /C ""%~dp0spark-submit2.cmd" %*" 时没有任何反应。有谁知道出了什么问题?

1 个答案:

答案 0 :(得分:1)

您需要在build.gradle文件中添加如下所示的google存储库,以使其正常运行: -

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

另请查看以下网址以获取更多信息: -

https://developer.android.com/topic/libraries/support-library/setup.html