업데이트 # 2 2018년 5월 29일
문제의 외모되는 고정은 이제 사라, 나는 여전히 같은 Gradle을 CONFIGS을 사용하고 있습니다. 그러나 나는이 단계를 얼마 전에 수행했지만 이것들이 무엇을했는지 또는 이것이 서버 측 문제인지 최근에 수정 / 업데이트되었는지 확실하지 않습니다. 방금 다음 단계를 수행 한 후 문제가 사라지는 것을 알았습니다.
프로젝트 레벨 gradle.build에 다음을 추가하십시오. buildscript > repositories
및에allprojects > repositories
.
google()
maven { url 'http://jcenter.bintray.com' }
google-services 클래스 경로를 다음으로 변경하십시오.
classpath com.google.gms:google-services:4.0.1'
Gradle 파일과 프로젝트 동기화
업데이트 # 1 2018/05/29 앱 수준
에서 내 firebase 종속성을 ~ 12.0.0으로 다운 그레이드하여 오류를 해결했습니다. gradle 해결했습니다. 그러나이 방법은 앱에 심각하게 영향을 미치면서 더 실행 가능한 해결 방법을 찾고 있습니다.
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'
...
compile 'com.google.firebase:firebase-core:12.0.0'
compile 'com.google.firebase:firebase-database:12.0.0'
compile 'com.google.firebase:firebase-storage:12.0.0'
compile 'com.google.firebase:firebase-auth:12.0.0'
compile 'com.google.firebase:firebase-crash:12.0.0'
...
여기서도 @SimbaClaws에서 설명한 것과 동일한 문제가 발생했습니다. 어제 같은 문제에 직면 할 때까지 모든 것이 순조롭게 컴파일되었습니다.
내 프로젝트 레벨 build.gradle 에 다음 코드가 있습니다 .
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
maven {
url 'https://maven.fabric.io/public'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
//classpath 'com.google.gms:google-services:3.0.0'
classpath 'com.google.gms:google-services:3.2.1'
classpath 'io.fabric.tools:gradle:1.25.1'
}
}
allprojects {
repositories {
jcenter()
maven {
url 'https://maven.google.com/'
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
그리고 다음 코드는 앱 레벨 build.gradle에
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'
android {
compileSdkVersion 26
buildToolsVersion "26.0.1"
defaultConfig {
applicationId "my.secret.application"
minSdkVersion 16 // 19
targetSdkVersion 26
versionCode 1
versionName "5.0.204"
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.google.firebase:firebase-core:15.0.2'
compile 'com.google.firebase:firebase-database:15.0.0'
compile 'com.google.firebase:firebase-storage:15.0.2'
compile 'com.google.firebase:firebase-auth:15.1.0'
compile 'com.google.firebase:firebase-crash:15.0.2'
compile 'com.android.support:appcompat-v7:26.+'
compile 'com.android.support:design:26.+'
compile 'com.android.support:recyclerview-v7:26.+'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'de.hdodenhof:circleimageview:2.2.0'
compile 'com.android.support:palette-v7:26.+'
compile 'com.android.support:support-v4:26.+'
compile 'com.android.support:cardview-v7:26.+'
compile 'com.github.bumptech.glide:glide:3.7.0'
compile 'org.greenrobot:eventbus:3.1.1'
testCompile 'junit:junit:4.12'
compile 'com.crashlytics.sdk.android:crashlytics:2.9.1'
}
apply plugin: 'com.google.gms.google-services'
내가 아무것도 그리워하면 누구든지 조언 할 수 있습니까? 또한 가능한 해결 방법과 답변을 계속 찾고 있습니다. 티아!