Can't release the project using crashlytics after upgrading to java 8

本秂侑毒 提交于 2019-12-22 18:14:10

问题


After I move to java 8, I get this error in app release, because of fabric crashlytics:

Could not determine the dependencies of task ':app:crashlyticsStoreDeobsRelease'.
> Task with path 'dexRelease' not found in project ':app'.

I'm using Android Studio 2.2, Gradle version 2.14.1, Android plugin version 2.2.0

The project run without any problem, but I can't generate signed apk!

I read this post Can't run project - Android Studio 2.0 Crashlytics issues and Could not determine the dependencies of task ':app:crashlyticsStoreDeobsDebug' if I enable the proguard but answer didn't helped me.

This is my gradle file:

buildscript {
 repositories {
    maven { url 'https://maven.fabric.io/public' }
 }

 dependencies {
    classpath 'io.fabric.tools:gradle:1+'
 }
}

apply plugin: 'com.android.application'
apply plugin: 'io.fabric'

repositories {
    maven { url 'https://maven.fabric.io/public' }
}


android {
 compileSdkVersion 24
 buildToolsVersion "24.0.2"

 defaultConfig {
    applicationId "..."
    minSdkVersion 16
    targetSdkVersion 22
    versionCode 17
    versionName "0.14.1"

    jackOptions {
        enabled true
    }
}

compileOptions {
    sourceCompatibility JavaVersion.VERSION_1_8
    targetCompatibility JavaVersion.VERSION_1_8
}

  dexOptions {
    javaMaxHeapSize "3g"
  }

  signingConfigs {
    release {
        storeFile file("....jks")
        storePassword "..."
        keyAlias "..."
        keyPassword "..."
    }
  }

 buildTypes {
    release {
        minifyEnabled true
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        shrinkResources true

        debuggable true
        signingConfig signingConfigs.release
    }

    debug{
        debuggable true
        //applicationIdSuffix ".debug"
    }
 }
 }

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')

//Material edit text
compile 'com.rengwuxian.materialedittext:library:2.1.4'
//Circle progress bar
compile 'com.github.castorflex.smoothprogressbar:library-circular:1.1.0'
//a divider for recyclerview
compile 'com.yqritc:recyclerview-flexibledivider:1.2.9'


//Field and method binding for Android views
compile 'com.jakewharton:butterknife:7.0.1'
//crash reporting and streamline solution for distributing apps
   compile('com.crashlytics.sdk.android:crashlytics:2.6.3@aar') {
      transitive = true;
   }

//LeakCanary
debugCompile 'com.squareup.leakcanary:leakcanary-android:1.4-beta2'
releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.4-beta2'
testCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.4-beta2'

compile('com.github.ozodrukh:CircularReveal:2.0.1@aar') {
    transitive = true;
}
compile project(':core')
}

apply plugin: 'com.google.gms.google-services'

回答1:


I check the fabric tools version from this link

https://s3.amazonaws.com/fabric-artifacts/public/io/fabric/tools/gradle/maven-metadata.xml

Then I used a lower version classpath 'io.fabric.tools:gradle:1.25.4'



来源:https://stackoverflow.com/questions/39674118/cant-release-the-project-using-crashlytics-after-upgrading-to-java-8

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!