未找到 com.google.android.gms.internal.zzbck 的类文件
Posted
技术标签:
【中文标题】未找到 com.google.android.gms.internal.zzbck 的类文件【英文标题】:class file for com.google.android.gms.internal.zzbck not found 【发布时间】:2018-11-10 20:03:12 【问题描述】:我想在我的应用程序中实现 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'
希望有人能解决这个问题
【问题讨论】:
为什么需要com.google.android.gms:play-services:11.4.0
?
@DougStevenson 我的应用程序的其他部分需要它
【参考方案1】:
如果您想使用 google play services 库,请不要使用组合的 play-services 目标。
注意:不要使用组合播放服务目标。它引入了数十个库,使您的应用程序膨胀。相反,请仅指定您的应用使用的特定 Google Play 服务 API。
您需要使用单独的 API,例如:
implementation 'com.google.android.gms:play-services-plus:15.0.1'
也使用最新版本,更多信息在这里:
https://developers.google.com/android/guides/setup
【讨论】:
我想将库用于谷歌地图,现在用于 firebase。能做到吗? 使用这个com.google.android.gms:play-services-maps:15.0.1
和 firebase 库
清理并重建项目【参考方案2】:
我知道这对你来说会迟到 https://drive.google.com/drive/folders/1RB3YcwNUeITA073SPwerCcx_GetI4Jp_
-
将 google-play-service.jar 下载到您的文件夹中
应用程序并在那里提取它
在android studio中右键点击
jar 文件,然后单击添加为库
【讨论】:
请不要推荐第三方网站下载jar。请改用官方链接。 实际上这是在我电脑的一个旧项目中,所以我找不到任何其他网站@Zoe以上是关于未找到 com.google.android.gms.internal.zzbck 的类文件的主要内容,如果未能解决你的问题,请参考以下文章