在我今天更新Android Studio,Android支持存储库,Google Play服务和Google存储库之前,一切正常。现在我无法通过我的登录屏幕。正如我在标题中提到的,我正在使用Firebase进行身份验证和数据存储。
我也在使用模拟器:Nexus 6p API 23
这是我尝试登录时遇到的错误
03-05 13:39:50.689 2790-2852/alodia.medremind W/DynamiteModule: Local module descriptor class for com.google.firebase.auth not found.
03-05 13:39:50.698 2790-2852/alodia.medremind W/GooglePlayServicesUtil: Google Play services out of date. Requires 10298000 but found 10084470
这是我的项目build.gradle:
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.3'
classpath 'com.google.gms:google-services:3.0.0'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
这是我的app build.gradle:
apply plugin: 'com.android.application'
apply plugin: 'com.neenbedankt.android-apt'
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "alodia.medremind"
minSdkVersion 15
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
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.astuetz:pagerslidingtabstrip:1.0.1'
compile 'com.android.support:appcompat-v7:25.2.0'
compile 'com.android.support:design:25.2.0'
compile 'com.android.support:recyclerview-v7:25.2.0'
compile 'com.github.paolorotolo:appintro:4.1.0'
compile 'com.jakewharton:butterknife:7.0.1'
compile 'com.google.firebase:firebase-core:10.2.0'
compile "com.google.firebase:firebase-auth:10.2.0"
compile "com.google.firebase:firebase-database:10.2.0"
compile "com.google.firebase:firebase-storage:10.2.0"
compile 'com.firebaseui:firebase-ui-database:1.2.0'
compile 'org.parceler:parceler-api:1.1.1'
compile 'com.android.support:support-v4:25.2.0'
compile 'com.android.support:cardview-v7:25.2.0'
testCompile 'junit:junit:4.12'
apt 'org.parceler:parceler:1.1.1'
}
apply plugin: 'com.google.gms.google-services'
能够解决这个问题真的很棒,但我最想知道这个问题背后的为什么。我对Android很新,我确信我误解了很多基本概念。
答案 0 :(得分:2)
清理您的项目并重建,如果没有工作,那么您可以参考this post。
答案 1 :(得分:0)
您的Google Play服务必须是10.2.0或更高版本:
'com.google.gms:google-services:10.2.0'
答案 2 :(得分:0)
您的模拟器系统映像没有Google Play服务的最新版本(10.2.98)。
在Android Studio中,打开SDK Manager并检查显示包详细信息框。因为您正在测试API 23图像,所以向下滚动到Android 6.0部分。使用 Google API ...系统映像形式的名称更新模拟器映像。最新版本是Rev 20。
运行模拟器时,您可以转到设置>确认您拥有最新版本。 应用,滚动到Google Play服务,然后点击查看应用信息中的版本号。
答案 3 :(得分:0)
我通过将手机中的Google Play服务从8.0更新到11.0来解决了这个问题。
答案 4 :(得分:0)
我刚刚解决了我的问题兄弟,我认为你只需要重新同步firebase,按照这一步点击标签工具 - > firebase - >选择1个firebase功能 - >如果连接的按钮是灰色,则必须重新同步firebase,它会将firebase配置更新为最新版本。希望它会有所帮助。
答案 5 :(得分:0)
在将项目连接到Firebase之后,请确保已将Firebase身份验证添加到项目中。