Gradle build error with branch io and crashlytics

戏子无情 提交于 2019-12-06 07:53:45

com.crashlytics.sdk.android:answers-shim:0.0.3 isn't available on mavenCentral. Add jcenter to your repository section.

ref: https://bintray.com/fabric/fabric/com.crashlytics.sdk.android%3Aanswers-shim/view

Example:

repositories {
  jcenter()
}
Bayan

If you don't plan to use the Fabric Answers integration, and don't want to import the answers-shim, just import your project as follows:

replace io.branch.sdk.android:library:1.14.1 with

implementation ('io.branch.sdk.android:library:3.+') {
    exclude module: 'answers-shim'
}

Source - https://github.com/BranchMetrics/android-branch-deep-linking

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!