无法使用crashlytics构建Android应用程序

smo*_*ear 11 android crashlytics twitter-fabric crashlytics-android

我想在android应用程序中从crashlytics 1.x升级到Fabric.我已修改build.gradle文件以匹配此处的示例 - https://fabric.io/downloads/gradle

但在构建中我得到 - 错误:无法解决:com.crashlytics.sdk.android:crashlytics:2.5.5

我正在使用Android studio 1.5.1,我安装了Fabric插件.我还需要做什么?

buildscript {
    repositories {
        jcenter()
        maven { url 'https://maven.fabric.io/public' }
        maven { url 'http://repository-nutiteq.forge.cloudbees.com/release/' }

    }
    dependencies {
        classpath 'com.android.tools.build:gradle:1.5.0'
        classpath 'io.fabric.tools:gradle:1.+'
    }
}

apply plugin: 'com.android.library'
apply plugin: 'io.fabric'


android {
    compileSdkVersion 23
    buildToolsVersion "23.0.2"
    useLibrary  'org.apache.http.legacy'

    defaultConfig {
        minSdkVersion 16
        targetSdkVersion 23
        multiDexEnabled true
    }


    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_7
        targetCompatibility JavaVersion.VERSION_1_7
    }

    dexOptions {
        jumboMode = true
    }

    packagingOptions {
        exclude 'META-INF/DEPENDENCIES'
        exclude 'META-INF/LICENSE'
        exclude 'META-INF/LICENSE.txt'
        exclude 'META-INF/license.txt'
        exclude 'META-INF/NOTICE'
        exclude 'META-INF/NOTICE.txt'
        exclude 'META-INF/notice.txt'
        exclude 'META-INF/ASL2.0'
        exclude 'META-INF/maven/com.squareup.okhttp/okhttp/pom.properties'
    }


}

repositories {
    jcenter()
    maven { url 'https://maven.fabric.io/public' }
    maven { url 'http://repository-nutiteq.forge.cloudbees.com/release/' }

}


dependencies {
    compile 'com.android.support:appcompat-v7:23.1.1'
    compile 'com.android.support:recyclerview-v7:23.1.1'
    compile 'com.squareup.okhttp3:okhttp:3.1.2'
    compile('com.crashlytics.sdk.android:crashlytics:2.5.5@aar') {
        transitive = true;
    }

    // some removed

}
Run Code Online (Sandbox Code Playgroud)

Sir*_*ena 28

我有同样的问题,并通过添加解决它

    allprojects {
     repositories {
         jcenter()
         mavenCentral()
         maven { url 'https://maven.fabric.io/public' }
     }
    }
Run Code Online (Sandbox Code Playgroud)

在build.gradle(项目)中

  • 虽然此链接可能会回答这个问题,但最好在此处包含答案的基本部分并提供参考链接.如果链接的页面发生更改,则仅链接的答案可能会无效. - [来自评论](/ review/low-quality-posts/11320543) (2认同)