Could not find method create() for arguments [crashlyticsStoreDeobsDebug, class com.crashlytics.tools.gradle.tasks.StoreMappingFileTask, com.android.build.gradle.int
when you update with android studio 3.2 and using fabric gradle version 1.+ then you have to change fabric gradle version 1.+ to 1.25.4 in biuld.gradle(project) file
buildscript {
repositories {
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
//classpath 'io.fabric.tools:gradle:1.+' // old version
classpath 'io.fabric.tools:gradle:1.25.4' // new version
}
}
Note: Although the fabric gradle latest version is 1.26.0 but it's not stable version.stable version is 1.25.4. its work fine.
For me, the problem appeared when I updated to AS 3.2-RC02 which requires the Android plugin 3.2.0-rc02
.
So I had to roll back to AS 3.1.4 which is the current stable version so I could downgrade my version of the Android plugin. I am using Android plugin 3.2.0-rc01
I also had to downgrade the fabric plugin to 1.24.4