আমি যখন আমার প্রকল্পে ফায়ারবেস পারফেক্ট নির্ভরতা যুক্ত করি তখন আমি এই ত্রুটিটি পাচ্ছি Illegal class file: Class module-info is missing a super type. Class file version 53.
আমার গ্রেডল এবং গুগল পরিষেবাগুলি প্রকল্প-স্তরের নির্ভরতাগুলি
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-st সূত্রে- অ্যান্ড্রয়েডে উল্লিখিত সঠিক পদক্ষেপগুলি অনুসরণ করেছি ।
আমি অ্যান্ড্রয়েড স্টুডিও ক্যাশে পরিষ্কার এবং পুনর্নির্মাণ এবং সাফ করার চেষ্টা করেছি।
এবং স্ট্যাকওভারফ্লো থেকে একইভাবে সমাধান ইস্যু করার চেষ্টা করেছিল tried
প্রকল্প স্তর বিল্ড গ্রেড
// 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'
}
ফ্যাব্রিক সরানোর চেষ্টা করুন এবং এটি কেবলমাত্র পারফরম্যান্স দিয়ে পরীক্ষা করুন, সম্ভবত এটির একটি লাইব্রেরি বিরোধ রয়েছে।
—
আতিফ আব্বাসি
এখানে উত্তর দেওয়া হয়েছে: স্ট্যাকওভারফ্লো.com
—
জেফ লকহার্ট
build.gradle
প্রশ্নের যোগ করুন ।