错误:找不到com.google.android.gms.internal.zzbfm的zzbfm类文件

时间:2018-07-31 09:40:39

标签: android firebase android-gradle android-studio-3.1.3

尝试构建我的应用程序时出现以下错误:

错误:无法访问zzbfm 找不到com.google.android.gms.internal.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版本。

如果我删除了3行的编译Firebase,则该应用程序将正常运行,但我想我应该在build.gradle中添加它们。

1 个答案:

答案 0 :(得分:2)

在顶级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'
  

注意:请勿使用组合的播放服务目标。它带来了数十个库,使您的应用程序膨胀。而是仅指定您的应用使用的特定Google Play服务API。

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

也请检查一下:

Android | Cannot add all Google libraries for version 15.0.1