Gdy dodam zależność firebase perf do mojego projektu, pojawia się ten błąd. Zależności między moim Illegal class file: Class module-info is missing a super type. Class file version 53.
programem Gradle i usługami Google są
classpath 'com.android.tools.build:gradle:3.5.1'
classpath 'com.google.gms:google-services:4.3.2'
i wykonałem dokładnie kroki wymienione w ich dokumentach https://firebase.google.com/docs/perf-mon/get-started-android .
Próbowałem wyczyścić, odbudować i wyczyścić pamięć podręczną Android Studio.
Próbowałem również rozwiązać problem z StackOverflow
Stopień kompilacji na poziomie projektu
// 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()
}
}
Stopień kompilacji na poziomie aplikacji
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'
}
build.gradle
do pytania.