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

后端 未结 8 1439
余生分开走
余生分开走 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 07:51

    I ran into the same error. However, I succeeded in building in the following way.

    - classpath 'com.google.firebase:firebase-plugins:1.1.1'
    + classpath 'com.google.firebase:firebase-plugins:1.2.0'
    
    0 讨论(0)
  • 2021-01-03 07:52

    If you're still looking at this, I just got an update to 3.6.2 and it specifically did some firebase-related update (although my code doesn't use firebase..) immediately after restart.

    0 讨论(0)
  • 2021-01-03 07:52

    gradle 5.6.4 having some sync problem . go to the gradle-wrapper.properties and change the url to this

    distributionUrl=https://services.gradle.org/distributions/gradle-6.0-all.zip

    0 讨论(0)
  • 2021-01-03 08:07

    I tried many suggestions from stackoverflow(here), github forums etc. Checked gradle and gradle plugin versions if there is any compatibility problems. Only worked : I clean .idea and .gradle file, exit AndroidS, and I open my react native proj on Android studio and I did open from file choose android folder, after that waited android studio finish indexing(really waited this time) and press hammer icon for build and wait again patiently and build-run on simulator successfully.

    I didn't wait before, I guess I didn't imagine that Android studio takes so much time to index-run-build

    I am sharing if somebody still stuck, key was waiting for me, good luck

    0 讨论(0)
  • 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'
    
    0 讨论(0)
  • 2021-01-03 08:14
    buildToolsVersion "29.0.2"
    

    remove this line from build.gradle

    0 讨论(0)
提交回复
热议问题