เมื่อฉันเพิ่ม 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
การสร้างระดับโครงการ
// 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()
}
}
การสร้างระดับแอปพลิเคชัน
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
ตอบแล้วที่นี่: stackoverflow.com/questions/58441409/…
—
Jeff Lockhart
build.gradle
คำถามของคุณ