Android Studio 3.6.1 with Gradle Plugin Version 3.6.1 and Gradle Version 5.6.4 not working

后端 未结 8 1522
余生分开走
余生分开走 2021-01-03 07:38

My application is working very well. I have just updated Android Studio 3.6.1,

After updating Android Studio I got this dialog and I am going to upda

8条回答
  •  长情又很酷
    2021-01-03 08:10

    It seems like you're mixing old fabric&crashlytics with new firebase&crashlytics. Try:

    Project Level build.gradle:

    buildscript {
        ext.objectboxVersion = '2.5.0'
        repositories {
            google()
            jcenter()
    //        maven {
    //            url 'https://maven.fabric.io/public'
    //        }
        }
        dependencies {
            classpath 'com.android.tools.build:gradle:3.6.1'
            classpath 'com.google.gms:google-services:4.3.3'
    
            classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.2.1"
            classpath "io.objectbox:objectbox-gradle-plugin:$objectboxVersion"
            // NOTE: Do not place your application dependencies here; they belong
            // in the individual module build.gradle files
    
            // Add dependency
    //        classpath 'io.fabric.tools:gradle:1.31.0'
            classpath 'com.google.firebase:firebase-crashlytics-gradle:2.1.0'
        }
    }
    
    allprojects {
        repositories {
            google()
            jcenter()
            maven { url "https://jitpack.io" }
        }
    }
    
    task clean(type: Delete) {
        delete rootProject.buildDir
    }
    

    App Level build.gradle:

    apply plugin: 'com.android.application'
    apply plugin: "androidx.navigation.safeargs"
    //apply plugin: 'io.fabric'
    apply plugin: 'com.google.firebase.crashlytics'
    
    android {
        compileSdkVersion 29
    //    buildToolsVersion "29.0.2"    // buildtools is now automatically determined, based on compileSDKVersion
        defaultConfig {
            applicationId "com.sohamerp.marsremedies"
            minSdkVersion 19
            targetSdkVersion 29
            versionCode 1
            versionName "1.0"
            testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
            vectorDrawables.useSupportLibrary = true
            multiDexEnabled true
        }
        dataBinding {
            enabled true
        }
        buildTypes {
            release {
                minifyEnabled false
                proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
            }
        }
        compileOptions {
            sourceCompatibility = 1.8
            targetCompatibility = 1.8
        }
    }
    
    dependencies {
        //implementation fileTree(dir: 'libs', include: ['*.jar'])
        implementation 'androidx.legacy:legacy-support-v4:1.0.0'
        implementation 'androidx.navigation:navigation-fragment:2.2.1'
        implementation 'androidx.navigation:navigation-ui:2.2.1'
    
        implementation 'androidx.multidex:multidex:2.0.1'
    
        implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
        testImplementation 'junit:junit:4.13'
        androidTestImplementation 'androidx.test.ext:junit:1.1.1'
        androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
    
        implementation 'androidx.appcompat:appcompat:1.1.0'
        implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
        implementation 'com.google.android.material:material:1.2.0-alpha05'
    
        implementation 'com.github.mukeshsolanki:android-otpview-pinview:2.1.0'
    
        implementation 'com.squareup.retrofit2:retrofit:2.7.1'
        implementation 'com.squareup.retrofit2:converter-gson:2.7.1'
        implementation 'com.squareup.okhttp3:logging-interceptor:4.4.0'
    
        implementation 'com.google.android.gms:play-services-location:17.0.0'
        implementation 'com.google.firebase:firebase-core:17.2.2'
        implementation 'com.google.firebase:firebase-auth:19.2.0'
        implementation 'com.google.firebase:firebase-messaging:20.1.0'
    //    implementation 'com.crashlytics.sdk.android:crashlytics:2.10.1'
        implementation 'com.google.firebase:firebase-crashlytics:17.0.0'
    
        implementation 'com.github.bumptech.glide:glide:4.11.0'
        annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0'
        annotationProcessor 'androidx.annotation:annotation:1.1.0'
    
        implementation "com.github.firdausmaulan:GlideSlider:1.5.1"
    
        implementation 'com.theartofdev.edmodo:android-image-cropper:2.8.0'
    
        implementation 'org.greenrobot:eventbus:3.1.1'
    
        debugImplementation "io.objectbox:objectbox-android-objectbrowser:$objectboxVersion"
        releaseImplementation "io.objectbox:objectbox-android:$objectboxVersion"
    
        implementation 'com.intuit.sdp:sdp-android:1.0.6'
    }
    // apply the plugin after the dependencies block
    
    apply plugin: 'com.google.gms.google-services'
    apply plugin: 'io.objectbox'
    

提交回复
热议问题