Khi tôi thêm phụ thuộc hoàn hảo firebase vào dự án của mình, tôi sẽ gặp lỗi này Illegal class file: Class module-info is missing a super type. Class file version 53.
Phụ thuộc cấp độ dự án và các dịch vụ của Google là
classpath 'com.android.tools.build:gradle:3.5.1'
classpath 'com.google.gms:google-services:4.3.2'
và tôi đã làm theo các bước chính xác được đề cập trong tài liệu của họ https://firebase.google.com/docs/perf-mon/get-started-android .
Tôi đã thử dọn dẹp và xây dựng lại và xóa bộ đệm Android Studio.
Và cũng đã thử giải quyết vấn đề tương tự từ StackOverflow
Cấp độ xây dựng dự án
// 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()
}
}
Cấp độ xây dựng ứng dụng
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'
}
hãy thử loại bỏ vải và chỉ kiểm tra nó với hiệu suất, có thể đó là xung đột thư viện.?
—
Atif AbbAsi
Đã trả lời tại đây: stackoverflow.com/questions/58441409/ Kẻ
—
Jeff Lockhart
build.gradle
câu hỏi của bạn .