Android 5.1.1搭載の電話でAndroidアプリをテストしていて、すべて正常に動作していましたが、今日はAndroid 5.0.2のタブレットでテストしました。アプリがそのサービスを実行しません。Google Playのサービスが古くなりました。 9683000が必要ですが、見つかった9452230
GooglePlayServicesUtil: Google Play services out of date. Requires 9683000 but found 9452230
はここに私のgradle.buildファイルをだ、すべてが最新のようです。私は既にタブレットのアップデートをチェックしていて、それがないようです。
apply plugin: 'com.android.application'
android {
compileSdkVersion 24
buildToolsVersion "24.0.2"
defaultConfig {
applicationId "alpha"
minSdkVersion 16
targetSdkVersion 24
versionCode 1
versionName "1.0.2"
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
lintOptions {
abortOnError false
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:24.2.0'
compile 'com.google.code.gson:gson:2.7'
compile 'com.squareup.okhttp3:okhttp:3.4.1'
compile 'com.google.android.gms:play-services-location:9.6.1'
testCompile 'junit:junit:4.12'
testCompile 'org.powermock:powermock-api-mockito:1.6.4'
testCompile 'org.mockito:mockito-core:1.10.19'
}
問題を解決する方法については、ありがとうございます。ここで
EDIT
は、adbのシェルからフルlogcatは場合にその任意のヘルプです:タブレットのGoogleがサービスを再生する場合
W/ResourceType: Failure getting entry for 0x01080ad0 (t=7 e=2768) (error -75)
D/PhoneWindow: *FMB* installDecor mIsFloating : false
D/PhoneWindow: *FMB* installDecor flags : 8454400
V/ActivityThread: updateVisibility : ActivityRecord{37623128 [email protected] {alpha.MainActivity}} show : true
I/Timeline: Timeline: Activity_idle id: [email protected] time:8624348
W/GooglePlayServicesUtil: Google Play services out of date. Requires 9683000 but found 9452230
お使いの端末でアップデートしますか? – Blackbelt
Google Playサービス?私は更新をチェックしましたが、何もありません。 – Tuco
まあ、実際に更新するものがあります。 – Blackbelt