更新Google Play服务。除非您更新Google Play服务,否则应用无法运行

时间:2017-10-10 04:51:29

标签: android firebase firebaseui

我一直在尝试在 Android模拟器上运行应用,并在启动activity时显示此错误消息。我目前正在使用 Nexus 5x x86_64 API 25,我尝试了许多不同配置的不同仿真器。我已经安装了系统映像,对播放服务版本进行了更改,并更新了所有SDK工具。没有任何效果。我无法使用物理设备,因为我没有物理设备。这是在我添加Firebase UI之后才开始的。任何人都可以帮我解决这个错误吗?

我的应用build.gradle:

    apply plugin: 'com.android.application'

repositories {
    mavenLocal()
    flatDir {
        dirs 'libs'
    }
}

android {
    compileSdkVersion 26
    buildToolsVersion '26.0.1'

    defaultConfig {
        applicationId "com.google.firebase.udacity.friendlychat"
        minSdkVersion 16
        targetSdkVersion 24
        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:design:25.2.0'
    compile 'com.android.support:appcompat-v7:26.0.1'


    // Displaying images
    compile 'com.github.bumptech.glide:glide:3.6.1'
    compile 'com.google.firebase:firebase-auth:11.4.0'
    compile 'com.google.firebase:firebase-core:11.4.0'
    compile 'com.google.firebase:firebase-database:11.4.0'
    compile 'com.firebaseui:firebase-ui-auth:2.4.0'
    compile 'com.android.support:support-annotations:25.3.1'
}
apply plugin: 'com.google.gms.google-services'

1 个答案:

答案 0 :(得分:2)

您看到此消息是因为您使用的是默认情况下未安装任何Google Play服务的模拟器。因为Firebase是Google Play服务的一部分,因此在您运行应用时不会编译。为了使其正常工作,您可以应用以下解决方案......

  1. 您可以删除Firebase用户界面
  2. 使用具有Google Play商店帐户的真实设备
  3. 安装Xamarin Android Player / Genymotion,然后手动安装Play服务。
  4. 我附加了在Xamarin Android Player中安装Google Play商店的教程tutorial的链接。希望它有所帮助。