Android 프로젝트에 Firebase를 포함하려고합니다. 내가 사용하기 때문에,Google Play 서비스가 오래되었습니다. 11910000가 필요하지만 찾았습니다. 11577470
compile 'com.google.android.gms:play-services:9.6.0'
이 더 이상 나를 위해 작동하지 않습니다 그들 중 대부분은에 다운 그레이드 말, 내가 여기에 대해 몇 가지 링크를 발견
Google Play services out of date. Requires 11910000 but found 11577470
: 그것을 실행하면, 저에게이 오류가 발생합니다 SDK 26 및 다른 라이브러리와 비 호환성 오류가 발생합니다. 여기
내 Gradle을 파일입니다 (모듈) :`dependencies {
classpath 'com.android.tools.build:gradle:3.0.0'
classpath 'com.google.gms:google-services:3.1.1'
}
`앱 :
android {
compileSdkVersion 26
defaultConfig {
applicationId "com.example.project"
minSdkVersion 24
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
implementation 'com.google.firebase:firebase-messaging:11.8.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
compile 'com.google.firebase:firebase-core:11.8.0'
compile 'com.google.android.gms:play-services:11.8.0'
} 이 플러그인 적용 'com.google.gms.google-서비스'
And as you can see here my Google Services is updated as well.
내 기록에 이러한 오류 :
I/FirebaseCrash: Sending crashes
W/FirebaseInstanceId: No response
E/FirebaseInstanceId: Topic sync failed: TIMEOUT
E/FirebaseInstanceId: Topic sync failed: SERVICE_NOT_AVAILABLE
W/FirebaseInstanceId: No response
E/FirebaseInstanceId: Topic sync failed: TIMEOUT
누구든지이 문제를 해결할 수있는 방법을 알고 있습니까? 모든 팁을 부탁드립니다. 감사.
특히 내가하고 싶지 않은 것이 있습니다. 나는 실제로 26 또는 27을 사용하는 것을 선호합니다. – user1888492