All Questions
Tagged with google-fabric gradle
18
questions
0
votes
0
answers
169
views
Could not find io.fabric.tools::gradle1.24.1
I have an old app and it is giving theses error messages:
A problem occurred configuring project ':app'.
> Could not resolve all artifacts for configuration ':app:classpath'.
> Could not find ...
3
votes
1
answer
825
views
Firebase crashlytics error: Unable to load class 'org.gradle.api.tasks.TaskProvider'
I am trying to update fabric to Firebase crashlytics .
I followed their starting guide given here
The error I am getting are below:
(build.gradle) module-level:
I am using Gradle version: 4.6
...
9
votes
2
answers
5k
views
Specified path for unstripped native libs is not a directory - generateCrashlyticsSymbolFileRelease
How I can define androidNdkOut and androidNdkLibsOut paths with new Firebase Crashlytics SDK?
When I try to run:
./gradlew clean assembleRelease uploadCrashlyticsSymbolFileRelease
I get next error:
...
12
votes
1
answer
891
views
Crashlytics doesn't display native crashes
Before this gets marked as a duplicate, I have tried everything from all the possible questions.
Java crashes are reported properly, however crashes from the native libs don't have the debug symbols.
...
5
votes
3
answers
6k
views
Permission denied with Firebase distribution android app using service account credentials mode
I'm trying to migrate from Fabric to Firebase since Fabric will not be available beyond March 31, 2020.
I already have done the first steps: adding plugins and dependencies to gradle, adding ...
1
vote
1
answer
704
views
Fabric plugin crash --> No such property: betaDistributionApkFilePath for class: org.codehaus.groovy.runtime.GStringImpl
I am not able to configure Crashlytics in my application.
Just when I apply the fabric plugin (plugin: 'io.fabric') and build, I get this error.
FAILURE: Build failed with an exception.
* What went ...
1
vote
2
answers
194
views
Gradle Build failed Could not initialize CrashlyticsPlugin
When I try to build projects gradle I get this error:
Could not initialize class com.crashlytics.tools.gradle.CrashlyticsPlugin
Project Gradle is:
buildscript {
repositories {
google()
...
2
votes
1
answer
816
views
What use instead of TaskInternal execute() at gradle-5.1.1?
My custom task at gradle-4.10.1:
task fabricUploadApkDevelop(group: "fabric", dependsOn: ['assembleDevDebug']) {
doLast {
//fabric gradle task `assembleRelease ...
0
votes
1
answer
192
views
Fully migrate Fabric to Firebase
If I remove the Fabric plugin and keep integrated with Crashlytics via Firebase, will it also stop tracking the crashes? I've already linked and migrated to Firebase on the Fabric console.
I want to ...
4
votes
1
answer
503
views
Fabric Beta release notes and Gradle Kotlin DSL
As stated here: https://docs.fabric.io/android/beta/gradle.html
I used to have this 2 lines in an Android app's build.gradle to upload builds to Fabric Beta with given release notes to given group ...
1
vote
1
answer
263
views
Fabric plugin 1.26.0 incompatibility
When upgrading Fabric gradle plugin to 1.26.0, I cannot build my project due to the following error:
Could not find method create() for arguments [crashlyticsStoreDeobsProdAdminRelease, class com....
25
votes
6
answers
5k
views
Error:Could not find fabric.aar (io.fabric.sdk.android:fabric:1.3.17)
it worked before I don't change anything but today I got this error, here my gradle
buildscript {
repositories {
mavenCentral()
maven { url 'https://maven.fabric.io/public' }
jcenter()
}
...
7
votes
3
answers
12k
views
Failed to apply 'io.fabric' plugin on Android
I'm trying to add Firebase Crashlytics.
Firebase Crashlytics tutorial is very simple:
https://firebase.google.com/docs/crashlytics/get-started?authuser=0
I've already added repositories (in ...
3
votes
1
answer
1k
views
Fabric plugin incompatible with Gradle 4.4 +
Recently I have had to update my project to use Gradle 4.4 from 4.1.
i.e.
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip
in my gradle-wrapper.properties file.
However,...
2
votes
2
answers
1k
views
Disable mapping file (deob) upload on proguard build for Android Fabric/Crashlytics
Android App using proguard:
Crashlytics automatically uploads the mapping files for reach of your build variants.
https://docs.fabric.io/android/crashlytics/dex-and-proguard.html#gradle
We need ...