crashlytics-android

Crashlytics could not find the manifest with fabric.properties

半世苍凉 提交于 2019-11-30 06:46:56
问题 Im using classpath 'io.fabric.tools:gradle:1.+' and have a fabric.properties inside the module that I use for the fabric plugin. When I run gradlew crashlyticsUploadDistributionProdStaging I get: `Crashlytics could not find the manifest` com.crashlytics.tools.android.project.ManifestData$ManifestIOException: Crashlytics could not find the manifest. Not found at .../app/build/intermediates/manifests/full/prod/staging/AndroidManifest.xml Why? 回答1: It worked after I updated the fabric.properties

Crashlytics not uploading mapping file

£可爱£侵袭症+ 提交于 2019-11-29 18:04:23
I'm able to see crashes for a release build in Crashlytics but they are still obfuscated. I'm using: implementation "com.google.firebase:firebase-core:16.0.5" implementation "com.google.android.gms:play-services-base:16.0.1" implementation "com.crashlytics.sdk.android:crashlytics:2.9.6" and (project level) classpath 'com.android.tools.build:gradle:3.2.1' classpath 'com.google.gms:google-services:4.2.0' classpath 'io.fabric.tools:gradle:1.26.1' // Crashlytics plugin classpath "net.ltgt.gradle:gradle-apt-plugin:0.15" I've followed the instructions at https://firebase.google.com/docs/crashlytics

Disable “Answers” but not “Crashlytics”

拟墨画扇 提交于 2019-11-29 03:57:20
When installing "Crashlytics" in my Android App, it automatically installs "Answers". I only want to install "Crashlytics" and want to have "Answers" disabled. Does anyone know how to do that? build.gradle dependencies { compile('com.crashlytics.sdk.android:crashlytics:2.5.5@aar') { transitive = true; } Thanks! Mike from Fabric and Crashlytics here. As you saw, Crashlytics by default includes Answers. If you don't want Answers enabled on your app, then you want to invoke CrashlyticsCore() when building your app instead of Crashlytics . For example, have these as your imports: import com

Crashlytics could not find the manifest with fabric.properties

孤街浪徒 提交于 2019-11-28 21:38:26
Im using classpath 'io.fabric.tools:gradle:1.+' and have a fabric.properties inside the module that I use for the fabric plugin. When I run gradlew crashlyticsUploadDistributionProdStaging I get: `Crashlytics could not find the manifest` com.crashlytics.tools.android.project.ManifestData$ManifestIOException: Crashlytics could not find the manifest. Not found at .../app/build/intermediates/manifests/full/prod/staging/AndroidManifest.xml Why? It worked after I updated the fabric.properties with the right data and split the commannds: gradlew assembleProdStaging gradlew

SecurityException Permission Denial: opening provider com.google.android.gms.phenotype.provider.ConfigurationProvider [closed]

送分小仙女□ 提交于 2019-11-28 15:03:39
After integrating Firebase Crashlytics instead of Firebase Crash Reporting I have begun to get some crashes. I don't know anything about com.google.android.gms.phenotype.provider.ConfigurationProvider . What is it? And it appears on some devices (e.g. Samsung S8) This is a stack trace: Fatal Exception: java.lang.SecurityException Permission Denial: opening provider com.google.android.gms.phenotype.provider.ConfigurationProvider from ProcessRecord{422f6718 20494:my.package.name/u0a95} (pid=20494, uid=10095) that is not exported from uid 10008 android.os.Parcel.readException (Parcel.java:1472)

Disable “Answers” but not “Crashlytics”

隐身守侯 提交于 2019-11-27 17:53:02
问题 When installing "Crashlytics" in my Android App, it automatically installs "Answers". I only want to install "Crashlytics" and want to have "Answers" disabled. Does anyone know how to do that? build.gradle dependencies { compile('com.crashlytics.sdk.android:crashlytics:2.5.5@aar') { transitive = true; } Thanks! 回答1: Mike from Fabric and Crashlytics here. As you saw, Crashlytics by default includes Answers. If you don't want Answers enabled on your app, then you want to invoke CrashlyticsCore(

Fabric's Crashlytics with Firebase can't be disabled for DEBUG builds

南楼画角 提交于 2019-11-27 11:34:06
问题 I have an app that utilises Fabric's Crashlytics via Firebase. The following is the first thing executed in my Applications onCreate CrashlyticsCore crashlyticsCore = new CrashlyticsCore.Builder() .disabled(BuildConfig.DEBUG) .build(); Fabric.with(this, new Crashlytics.Builder().core(crashlyticsCore).build()); Nonetheless, the crashes are submitted in DEBUG == true mode. I use the following versions in my build.gradle classpath "io.fabric.tools:gradle:1.25.1" in my app/build.gradle

Crashlytics not uploading mapping file

可紊 提交于 2019-11-27 08:40:49
问题 I'm able to see crashes for a release build in Crashlytics but they are still obfuscated. I'm using: implementation "com.google.firebase:firebase-core:16.0.5" implementation "com.google.android.gms:play-services-base:16.0.1" implementation "com.crashlytics.sdk.android:crashlytics:2.9.6" and (project level) classpath 'com.android.tools.build:gradle:3.2.1' classpath 'com.google.gms:google-services:4.2.0' classpath 'io.fabric.tools:gradle:1.26.1' // Crashlytics plugin classpath "net.ltgt.gradle