web-dev-qa-db-ja.com

エラー:fabric.aar(io.fabric.sdk.Android:fabric:1.3.17)が見つかりませんでした

何も変更しない前に機能していましたが、今日はこのエラーが発生しました

buildscript {
repositories {
    mavenCentral()
    maven { url 'https://maven.fabric.io/public' }
    jcenter()

}

dependencies {
    classpath 'io.fabric.tools:gradle:1.+'
}}
25
hugerde

Jcenterがファブリックとクラッシュリティクスを持っていると報告しているように見えますが、持っていません。

私にとってそれを修正したのは、次のようにjcenterの前にファブリックmavenを上に移動することです:

repositories {
    mavenLocal()
    maven { url "https://maven.fabric.io/public" }
    jcenter()
    google()
}
17
MobileSam

ファブリックにいくつかの変更があります。これを確認してください: https://docs.fabric.io/Android/changelog.html#fabric-dependency-to-1-4-

これをあなたのgradleに追加してください:-

compile group: 'io.fabric.sdk.Android', name: 'fabric', version: '1.4.3'
12
Aris_choice

今日も同じ問題に直面しました。私もcrashlyticsを使用しています。 crashlyticsのバージョンを「2.6.5」から「2.9.3」に変更し、正常にビルドしました。

implementation('com.crashlytics.sdk.Android:crashlytics:2.9.3@aar') {
    transitive = true;
}
8
Chirag Chavda

Windowsを再インストールした後も同じ問題が発生し、Android studio。

dependencies {
        classpath 'io.fabric.tools:gradle:1.25.1'

    }
with

    implementation('com.crashlytics.sdk.Android:crashlytics:2.8.0@aar')

私にとって唯一の解決策は、にアップグレードすることでした

dependencies {
        classpath 'io.fabric.tools:gradle:1.25.4'

    }

with

implementation('com.crashlytics.sdk.Android:crashlytics:2.9.3@aar') 

それが役に立てば幸い!

2

1、クリーンプロジェクト2、compile( 'com.crashlytics.sdk.Android:answers:1.4.2@aar')のバージョンを変更

1
walter

Build.gradle(Module app):以下のように変更します

buildscript {
    repositories {
        maven { url 'https://maven.fabric.io/public' }
    }
    dependencies {
        // These docs use an open ended version so that our plugin
        // can be updated quickly in response to Android tooling updates

        // We recommend changing it to the latest version from our changelog:
        // https://docs.fabric.io/Android/changelog.html#fabric-gradle-plugin
        classpath 'io.fabric.tools:gradle:1.27.0'
    }
}
apply plugin: 'com.Android.application'
apply plugin: 'io.fabric'

repositories {
    maven { url 'https://maven.fabric.io/public' }
}
Android {
    compileSdkVersion 28
    buildToolsVersion '28.0.3'
    defaultConfig {
        applicationId "com.rameshr.project"
        minSdkVersion 16
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "Android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
         release {
             minifyEnabled false
             proguardFiles getDefaultProguardFile('proguard-Android.txt'), 'proguard-rules.pro'
         } 
}

dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    androidTestImplementation('com.Android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.Android.support', module: 'support-annotations'
    })
    implementation 'com.Android.support:appcompat-v7:28.0.0' 
    implementation 'com.Android.support.constraint:constraint-layout:1.1.3'
    testImplementation 'junit:junit:4.12' 
    implementation('com.crashlytics.sdk.Android:crashlytics:2.8.0@aar') {
        transitive = true;
    } 

}
0
Ramesh R