找不到com.google.android.gms.internal.zzbck的类文件

时间:2018-05-31 18:22:42

标签: java android firebase android-studio firebase-authentication

我想在我的应用程序中实现Firebase。

Firebase仅用于重置密码。

我遇到了这个问题,我不知道如何解决这个问题。

  

错误:无法访问zzbck

     

未找到com.google.android.gms.internal.zzbck的类文件

这是我的build.gradle:

buildscript {

repositories {
    google()
    jcenter()
}
dependencies {
    classpath 'com.android.tools.build:gradle:3.1.2'
    classpath 'com.google.gms:google-services:4.0.0'

}
}

allprojects {
repositories {
    google()
    jcenter()
    maven{
        url "https://maven.google.com"
    }
}
}

task clean(type: Delete) {
delete rootProject.buildDir
}

这是app build.gradle:

apply plugin: 'com.android.application'

android {
compileSdkVersion 27
defaultConfig {
    applicationId "com.example.user_pc.glavnastranicaprojekat"
    minSdkVersion 15
    targetSdkVersion 27
    multiDexEnabled = true
    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(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
implementation 'com.android.support:multidex:1.0.3'
androidTestImplementation 'com.android.support.test.espresso:espresso- core:3.0.2'

implementation 'com.google.android.gms:play-services:11.4.0'

implementation 'com.android.support:recyclerview-v7:27.1.1'
implementation 'com.android.support:cardview-v7:27.1.1'
implementation 'com.bignerdranch.android:expandablerecyclerview:1.0.3'

implementation 'com.android.support:design:27.1.0'

implementation 'com.basgeekball:awesome-validation:1.3'
implementation 'com.google.firebase:firebase-auth:16.0.1'
implementation 'com.google.firebase:firebase-core:16.0.0'
implementation 'com.google.firebase:firebase-messaging:17.0.0'



}
apply plugin: 'com.google.gms.google-services'

我希望有人能解决这个问题

2 个答案:

答案 0 :(得分:0)

如果您想使用Google Play服务库,请不要使用组合的播放服务目标。

  

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

您需要使用单独的API,例如:

 implementation 'com.google.android.gms:play-services-plus:15.0.1'

也可以使用最新版本,更多信息:

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

答案 1 :(得分:-1)

我知道这对你来说太迟了 https://drive.google.com/drive/folders/1RB3YcwNUeITA073SPwerCcx_GetI4Jp_

  1. 将google-play-service.jar下载到您内部的文件夹中 应用程序并在那里提取
  2. 在android studio中右键单击 jar文件,然后单击“添加为库”