web-dev-qa-db-ja.com

エラー:com.google.Android.gms.internal.zzbfmのzzbfmクラスファイルにアクセスできません

アプリケーションをビルドしようとすると、次のエラーが表示されます。

エラー:com.google.Android.gms.internal.zzbfmのzzbfmクラスファイルにアクセスできません

ここに私のbuild.gradleファイルのコードがあります:

apply plugin: 'com.Android.application'


Android {
compileSdkVersion 27
buildToolsVersion '27.0.3'
defaultConfig {

    applicationId "myapplicationid"
    minSdkVersion 21
    targetSdkVersion 27
    multiDexEnabled true
    versionCode 12
    versionName "1.0.1"
    testInstrumentationRunner "Android.support.test.runner.AndroidJUnitRunner"
    vectorDrawables.useSupportLibrary = true
}
signingConfigs {
    key {
        keyAlias 'anavasis'
        keyPassword 'anavasis'
             storeFile file('jks_file_path')
        storePassword 'anavasis'
    }
}
buildTypes {
    debug {
    }
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-Android.txt'), 'proguard-rules.pro'
    }
}
sourceSets { main { res.srcDirs = ['src/main/res', 'src/main/res/anim'] } }
allprojects {
    repositories {
        maven { url "https://jitpack.io" }
    }
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.Android.support.test.espresso:espresso-core:2.2.2', {
    exclude group: 'com.Android.support', module: 'support-annotations'
})
//compile 'com.google.maps.Android:android-maps-utils:0.4+'

compile 'com.Android.support:appcompat-v7:27.1.1'
compile 'com.google.Android.gms:play-services:11.8.0'
compile 'io.ticofab.androidgpxparser:parser:0.2.0'
compile 'com.google.maps.Android:android-maps-utils:0.4.+'
compile 'com.Android.support:design:27.1.0'
compile 'com.Android.support:support-v4:27.1.0'
compile 'com.Android.support.constraint:constraint-layout:1.0.2'
compile 'com.Android.support:support-vector-drawable:27.1.1'
compile 'com.Android.support:recyclerview-v7:27.1.0'
testCompile 'junit:junit:4.12'
compile 'com.google.code.gson:gson:2.8.0'
compile 'com.github.bumptech.glide:glide:3.6.0'
compile 'com.squareup.picasso:picasso:2.5.2'

compile 'com.Android.support:cardview-v7:27.1.0'

compile 'com.google.code.gson:gson:2.4'
compile 'com.mcxiaoke.volley:library:1.0.19'
implementation 'com.Android.support:multidex:1.0.3'

compile 'com.Android.billingclient:billing:1.0'

compile 'com.google.firebase:firebase-core:16.0.1'
compile 'com.google.firebase:firebase-crash:16.0.1'
compile 'com.google.firebase:firebase-auth:16.0.1'


 }

ここで答えを確認しました https://stackoverflow.com/a/50732851/1465756 ですが、複数のFirebaseバージョンはありません。

コンパイルFirebaseの3行を削除すると、アプリは問題なく実行されますが、build.gradleに含める必要があると思います。

5
arniotaki

最上位のgradleファイルでは、次を使用します。

classpath 'com.Android.tools.build:gradle:3.1.0'
classpath 'com.google.gms:google-services:4.0.2'

最新のFirebaseバージョンを使用できるようにするには、Android Studioをバージョン3.1にアップグレードします

Android Studio 3.1を使用してアプリを開発していない場合は、IDE内で正しいバージョンチェック動作を得るためにアップグレードする必要があります。

https://Android-developers.googleblog.com/2018/05/announcing-new-sdk-versioning.html


更新も:

compile 'com.google.Android.gms:play-services:11.8.0'

これに:

implementation 'com.google.Android.gms:play-services:15.0.1'

注:組み合わせたplay-servicesターゲットを使用しないでください。それはあなたのアプリケーションを肥大化させる何十ものライブラリをもたらします。代わりに、アプリが使用する特定のGoogle Play開発者サービスAPIのみを指定してください。

https://developers.google.com/Android/guides/setup

これも確認してください:

Android |バージョン15.0.1のすべてのGoogleライブラリを追加できません

2
Peter Haddad