相关疑难解决方法(0)

在Emulator中更新Google Play服务

我在Google Play上遇到过很多这样的问题,我使用的是Android 4.2.2 API 17.

我的应用需要Google Play服务8.1,它编译得很好,当它在模拟器上运行时会显示"您需要更新Google Play服务"的消息,

当我点击更新时没有任何反应,

如何在不下载任何最新API版本的情况下更新Google Play服务?

android android-emulator google-play google-play-services android-studio

130
推荐指数
7
解决办法
13万
查看次数

Google Play服务已过期.需要10084000但找到9879470.无法更新

我正在使用Firebase制作Android应用.这些是造成问题的线条:

dependencies {
    compile 'com.google.firebase:firebase-core:10.0.1'
    compile 'com.google.firebase:firebase-auth:10.0.1'
Run Code Online (Sandbox Code Playgroud)

我收到此错误:

Google Play services out of date.  Requires 10084000 but found 9879470. 
Run Code Online (Sandbox Code Playgroud)

我在模拟器上运行应用程序.似乎无法在模拟器上更新GPS,因为它没有Google Play商店.

在SDK Manager中,它说Google Player服务的版本是38.

没有明显的方法来更新它.

android firebase

25
推荐指数
2
解决办法
2万
查看次数

Google Play服务已过期.需要10298000但找到10084470

我不明白为什么我收到这条消息:

Google Play services out of date. Requires 10298000 but found 10084470
Run Code Online (Sandbox Code Playgroud)

在我的gradle中,我编译了谷歌地图版本10.2.以下是我的所有依赖项:

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    compile 'com.android.support:appcompat-v7:25.1.1'
    compile 'com.android.support:design:25.1.1'

    compile 'com.android.support:appcompat-v7:25.2.0'
    compile 'com.android.support:design:25.2.0'
    compile 'com.jakewharton:butterknife:7.0.1'

    compile 'com.stormpath.sdk:stormpath-sdk-android:1.1.3'
    compile 'pl.droidsonroids.gif:android-gif-drawable:1.2.5'

    compile 'com.android.support:cardview-v7:25.2.0'
    compile 'com.android.support:support-v4:25.2.0'

    compile 'com.squareup.okhttp3:okhttp:3.2.0'

    compile 'com.google.android.gms:play-services-maps:10.2.0'
    compile 'com.google.android.gms:play-services-location:10.2.0'

    compile 'com.android.support:preference-v7:25.2.0'
    compile 'com.android.support:recyclerview-v7:25.2.0'
    compile 'org.apache.directory.studio:org.apache.commons.io:2.4'
    testCompile 'junit:junit:4.12'
}
Run Code Online (Sandbox Code Playgroud)

dependencies android gradle

4
推荐指数
1
解决办法
9695
查看次数

Flutter:Google Play服务已过时

W / GooglePlayServicesUtil(8660):Google Play服务已过期。需要13400000但找到了13280022

我正在尝试在Nexus S和Pixel Phone模拟器上的google_maps_plugin存储库中运行示例应用程序,它们均在Android Pie上运行。

有问题,而不是颤抖的一面。我未能应用他们的解决方案。

到目前为止我做了什么

1)我的模拟器中没有此选项 /sf/answers/3171894771/

2)这是在flutter标签上,但是解决方案是一个依赖项修复 /sf/answers/3778754871/

3)我不清楚如何在过时的Gradle Google Play服务中将Google Play服务降级。需要10298000但找到10084470

4)尝试使用模拟器从此链接下载播放服务,但是由于我没有playstore应用,因此无法将我的帐户与其关联,https://play.google.com/store/apps/details? id = com.google.android.gms

此Google帐户尚未与设备关联。请先在设备上访问Play商店应用,然后再安装应用。

android android-emulator google-play-services

3
推荐指数
2
解决办法
2539
查看次数

GooglePlayServicesUtil:Google Play服务已过期.需要11011000但找到10298470

我正在使用Firebase开发一个Android应用程序.我在AVD模拟器像素中测试我的应用程序.但我一直在犯错误

Google Play服务已过期.需要11011000但找到10298470.

android firebase

1
推荐指数
1
解决办法
3875
查看次数