无法解决:com.microsoft.appcenter:appcenter-analytics:1.5.0

时间:2018-05-15 13:57:04

标签: android visual-studio-app-center

添加以下内容后,Gradle Sync失败:

  

错误:无法解决:   com.microsoft.appcenter:appcenter-分析:1.5.0

def appCenterSdkVersion = '1.5.0'
implementation "com.microsoft.appcenter:appcenter-analytics:${appCenterSdkVersion}"
implementation "com.microsoft.appcenter:appcenter-crashes:${appCenterSdkVersion}"

1 个答案:

答案 0 :(得分:0)

我最后将这个添加到我的Gradle最底层:

allprojects {
    repositories {
        google()
        jcenter()
    }
}

我相信这是因为我的傻瓜很老,可能不标准。