对于我的Android应用程序,我尝试使用Firebase进行身份验证和数据存储。现在我被身份验证卡住了当我的应用加载时,Android Studio控制台中会出现错误堆栈跟踪。
使用GooglePlayServices实用程序:找不到Google Play服务包名称。
android.content.pm.PackageManager$NameNotFoundException:com.google.android.gms
at android.app.ApplicationPackageManager.getPackageInfo(ApplicationPackageManager.java:137)
at com.google.android.gms.internal.zzrt.getPackageInfo(Unknown Source)
网址:com.google.android.gms.common.zze.zzby(未知来源)
at com.google.android.gms.common.zze.zzbx(未知源)
at com.google.android.gms.common.zze.zzbs(未知源)
在com.google.android.gms.common.zze.isGooglePlayServicesAvailable(未知源)
网址:com.google.android.gms.common.zzc. isGooglePlayServices Available(未知来源)
at com.google.android.gms.common.GoogleApiAvailability.isGooglePlayServicesAvailable(未知来源)
at com.google.android.gms.internal.zzqh$zzc.connect(未知源)
在com.google.android.gms.internal.zzqh$zzc.zza(未知来源)
at com.google.android.gms.internal.zzqh.zza(未知源)
at com.google.android.gms.internal.zzqh.handleMessage(Unknown Source)
at android.os.Handler.dispatchMessage(Handler.java:98)
在android.os.Looper.loop(Looper.java:148)
在android.os.HandlerThread.run(HandlerThread.java:61)
当我尝试提交我的电子邮件和密码凭据时,出现以下消息。
07-07 14:19:45.330 7430-7449/com.tech_centric.developmentworkflowfirebase W/DynamiteModule:未找到com.google.firebase.auth的本地模块描述符类。
07-07 14:19:45.330 7430-7449/com.tech_centric.developmentworkflowfirebase W/GooglePlayServicesUtil:Google Play商店不见了。
我的project/build.gradle看起来像这样:
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.5.0'
classpath 'com.google.gms:google-services:3.0.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
我的project/app/build.gradle看起来像这样:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
defaultConfig {
applicationId "com.tech_centric.developmentworkflowfirebase"
minSdkVersion 19
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
packagingOptions {
exclude 'META-INF/LICENSE'
exclude 'META-INF/LICENSE-FIREBASE.txt'
exclude 'META-INF/NOTICE'
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:24.0.0-alpha2'
compile 'com.android.support:design:24.0.0-alpha2'
compile 'com.google.firebase:firebase-core:9.2.0'
compile 'com.google.firebase:firebase-auth:9.2.0'
}
apply plugin: 'com.google.gms.google-services'
我是不是错过了什么让这一切成功的东西?
3条答案
按热度按时间xriantvc1#
希望有帮助!
7bsow1i62#
是的,您缺少在“身份验证”下启用
SIGN-IN-METHOD
。这里是截图,启用该方法后,你不会得到这个错误。现在尝试将文件上传到存储,现在它将工作。
mxg2im7a3#
我在使用虚拟机Genymotion API 21运行应用程序时发现了此错误。我的问题的解决方案是安装(添加)Google Play服务到虚拟机Genymotion。zip文件可以从这个链接ARM Translation Installer v1.1和Google Play服务Android version 5.0下载。要安装Google Play服务,只需将两个zip文件拖放到Android Genymotion模拟器的主屏幕上,然后通过运行
adb reboot
或单击Android Genymotion模拟器的电源按钮重新启动模拟器。