crashlytics

Android Fabric Crashlytics crashing with Resource not found at initialisation

感情迁移 提交于 2019-12-12 07:59:22
问题 I've got this report from the google play console - it looks like Fabric is crashing at startup because of a resource not found exception for some users: java.lang.RuntimeException: at android.app.ActivityThread.installProvider (ActivityThread.java:6423) at android.app.ActivityThread.installContentProviders (ActivityThread.java:6012) at android.app.ActivityThread.handleBindApplication (ActivityThread.java:5951) at android.app.ActivityThread.-wrap3 (ActivityThread.java) at android.app

com.crashlytics.android.CrashlyticsMissingDependencyException during gradle 'testDebug' on android studio project

别说谁变了你拦得住时间么 提交于 2019-12-12 07:46:49
问题 I have an Android Studio project with the latest 1.15.2 crashlytics. It works well when i build and run on my device. However after crashlytic's setup my tests fails on gradle 'testDebug'. Output is ....app.entity.ConfigurationTest > parseTest FAILED java.lang.RuntimeException Caused by: io.fabric.sdk.android.services.concurrency.UnmetDependencyException Caused by: com.crashlytics.android.CrashlyticsMissingDependencyException It can be related to the call of an activity onCreate method during

Crashlytics error - This app relies on Crashlytics. Please sign up for access

廉价感情. 提交于 2019-12-12 07:26:08
问题 I have two build flavors in gradle but for some reason whenever i change the following flag to false i get the titled error message: ext.enableCrashlytics = false the error itself complete is below: Process: com.mobile.myapp.staging, PID: 5439 java.lang.RuntimeException: Unable to create application com.mobile.myapp.UI.myappApplication: io.fabric.sdk.android.services.concurrency.UnmetDependencyException: This app relies on Crashlytics. Please sign up for access at https://fabric.io/sign_up,

iOS app crashes caught by crashlytics

穿精又带淫゛_ 提交于 2019-12-12 06:23:21
问题 I fixed so many crashes in my app using (Fabrics) crashlytics. The ones showing my project's code were easy to fix. But there are some crashes which are refering to OS code (probably). And I have no idea how to fix them. I made the issue public and you can see it here. This is the crash log: com.apple.main-thread 0 libobjc.A.dylib 0x18f3e593c search_method_list(method_list_t const*, objc_selector*) + 84 1 libobjc.A.dylib 0x18f3e0e58 getMethodNoSuper_nolock(objc_class*, objc_selector*) + 100 2

Crashlytics - Unable to get crash reports when the app crashes while not connected to android studio

瘦欲@ 提交于 2019-12-12 03:57:46
问题 I'm using crashytics from Fabric.io in my app. Here's how I have initialised it in my MainActivity.java at the very last of onCreate() method: Fabric.with(this, new Crashlytics()); Here's build.gradle (Project: abc) file: // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { repositories { mavenCentral() maven { url 'https://maven.fabric.io/public'} } dependencies { classpath 'com.android.tools.build:gradle:2.2.3' classpath 'com

Crashlytics not logging errors in framework

大憨熊 提交于 2019-12-11 14:18:33
问题 I'm using Crashlytics to log errors in my iOS app. This works fine as long as the error occurs in my main app project, but if it happens in one of my frameworks the error isn't logged. Or at least it doesn't appear in the Crashlytics dashboard. If an error occurs in my framework I log it the same way as I log it in my main project: Crashlytics.sharedInstance().recordError(error) Do I have to configure Crashlytics in my framework as well, or will it get access to the same Crashlytics instance

Crashlytics error code: 202 when Submitting files

僤鯓⒐⒋嵵緔 提交于 2019-12-11 12:40:28
问题 My app ( iOS ) used crashlytics framework and it was OK until now. But in some days ago, I didn't see any report on crashlytics dashboard. So I made a testing bug by [[Crashlytics shareInstance] crash] and it logged 2013-08-12 15:02:22.927 ... [Crashlytics] Processed file successfully 2013-08-12 15:02:22.930 ... [Crashlytics] Alternate file submission complete 2013-08-12 15:02:22.933 ... [Crashlytics] Displaying permission alert 2013-08-12 15:02:38.919 ... [Crashlytics] Submitting files 2013

Add more beta testers for the app through crashlytics beta

删除回忆录丶 提交于 2019-12-11 12:39:45
问题 If I have to add more testers (especially outside clients), What is the best way to add it? Since I don't know the outside testers' UDID, how do I tackle this situation? The only way I can see is request their UDIDs and add them to the profile, download the updated profile and rebuild it and send it to these outside testers. Seems very cumbersome. 回答1: Actually not. But, you can ask users for their UUID before your build and then add them to your developer account and then release the build.

Disable Crashlytics/Answers based on user setting

主宰稳场 提交于 2019-12-11 11:32:23
问题 I am adding a new preference on my app, to allow the user to opt out of analytics reports. I am using in my app Crashlytics and Answers by Fabric. I have this code within onCreate: if (PreferenceHelper.getAllowAnalytics(context)) { Fabric.with(this, new Crashlytics()); } else { //no crash or answers to be sent } } and each time I want to send an event I do it like this: Answers.getInstance().logCustom(new CustomEvent("test event")); This works well, when the user allows it. How should I

Fabric and Crashlytics not working with Bazel build

三世轮回 提交于 2019-12-11 09:08:57
问题 I'am building an android app which uses fabric-crashlytics for logging all the crashes in devices. This particular line of code: Crashlytics crashlyticsKit = new Crashlytics.Builder() .core(new CrashlyticsCore.Builder().disabled(false).build()) .build(); Fabric.with(this, crashlyticsKit); is crashing with Bazel, but, when I set this value to "true"..(i.e., I'am disabling Crashlytics ), this application's Bazel build is working fine. But, If I'am building a normal android app it's not crashing