Когда я добавляю в свой проект зависимости firebase perf, я получаю эту ошибку. Illegal class file: Class module-info is missing a super type. Class file version 53.
Мои зависимости Gradle и google services находятся на уровне проекта.
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'
}
попробуйте удалить матрицу и протестировать ее только с производительностью, может быть, это конфликт библиотеки.
—
Атиф Аббази
Ответили здесь: stackoverflow.com/questions/58441409/…
—
Джефф Локхарт
build.gradle
вопрос.