내 프로젝트에 firebase perf 종속성을 추가하면이 오류가 발생합니다. Illegal class file: Class module-info is missing a super type. Class file version 53.
Gradle 및 Google 서비스 프로젝트 수준 종속성이 있습니다.
classpath 'com.android.tools.build:gradle:3.5.1'
classpath 'com.google.gms:google-services:4.3.2'
나는 그들의 문서 https://firebase.google.com/docs/perf-mon/get-started-android에 언급 된 정확한 단계를 따랐습니다 .
Android Studio 캐시를 정리하고 다시 작성하고 지우려고했습니다.
또한 StackOverflow에서 비슷한 문제 해결을 시도했습니다.
프로젝트 레벨 빌드 gradle
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
maven { url 'https://maven.google.com' }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.1'
classpath 'com.google.gms:google-services:4.3.2'
classpath 'com.google.firebase:perf-plugin:1.3.1' // Performance Monitoring plugin
}
}
allprojects {
repositories {
google()
jcenter()
}
}
앱 레벨 빌드 gradle
buildscript {
repositories {
maven { url 'https://maven.fabric.io/public' }
maven { url "https://jitpack.io" }
jcenter()
}
dependencies {
classpath 'io.fabric.tools:gradle:1.31.0'
}
}
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'
// Apply the Performance Monitoring plugin to enable instrumentation
apply plugin: 'com.google.firebase.firebase-perf'
repositories {
maven { url 'https://maven.fabric.io/public' }
maven { url "https://jitpack.io" }
maven {
url 'https://maven.google.com'
}
}
dependencies {
// Not added all dependencies , Just the firebase one SINCE ITS PRETTY LONG
implementation 'com.google.firebase:firebase-perf:19.0.0'
}
패브릭을 제거하고 성능만으로 테스트하십시오. 라이브러리 충돌 일 수 있습니다.
—
Atif AbbAsi 5
Answer here : stackoverflow.com/questions/58441409/…
—
Jeff Lockhart
build.gradle
질문에 당신 을 추가하십시오 .