crittercism

Only some users reporting “Resource Not Found” error. Does this make sense?

爱⌒轻易说出口 提交于 2019-12-30 03:44:07
问题 I am seeing a a couple of errors coming up on Crittercism (Crash reporting service) for my published Android app. The trace is the following: 0 java.io.IOException: Resource not found: "org/joda/time/tz/data/ZoneInfoMap" ClassLoader: dalvik.system.PathClassLoader@45908320 1 at org.joda.time.tz.ZoneInfoProvider.openResource(ZoneInfoProvider.java:211) 2 at org.joda.time.tz.ZoneInfoProvider.<init>(ZoneInfoProvider.java:123) 3 at org.joda.time.tz.ZoneInfoProvider.<init>(ZoneInfoProvider.java:82)

Crittercism on Android with NDK?

六眼飞鱼酱① 提交于 2019-12-12 22:05:17
问题 I'm attempting to use the example code from Crittercism found in their documentation: http://docs.crittercism.com/android/android.html#other-tasks I get the callback, but after I've forced an exception in my C++ code I always get false from the boolean didCrashOnLastLoad. Does Crittercism support crashes in NDK? 回答1: Crittercism does support NDK crashes and this callback does look for both NDK and Android SDK crashes occurring. If you go to this download link you'll see next to Android an

Not able to upload application because of .sh file of Crittercism

流过昼夜 提交于 2019-12-12 11:03:42
问题 We are using Crittercism SDK since last 2 years and we are successfully able to upload application. Since last 2 days, we are not able to upload application with Crittercism because of dsym_upload.sh file. Anyone getting same issue...!!! 回答1: This issue is resolved in CrittercismSDK 5.2.0 CocoaPods spec: https://github.com/CocoaPods/Specs/blob/master/Specs/CrittercismSDK/5.2.0/CrittercismSDK.podspec.json If you don't want to upgrade to 5.2.0, then just delete the file and remove these lines

NSSetUncaughtExceptionHandler not catches the exception in swift But Crittercism does it

不羁岁月 提交于 2019-12-10 10:02:05
问题 Purpose of NSSetUncaughtExceptionHandler is to catch the exception and dump it somewhere so that we can find why the app crashed and what is the exception. In Objective C it catches the exception as expected..Here is the reference But in swift when an exception arises its not caught. Here is the code that I used in didFinishLaunchingWithOptions NSSetUncaughtExceptionHandler { exception in NSUserDefaults.standardUserDefaults().setObject("Exception Details Are \n\nExceptionName--> \(exception

Symbolicate crash report without the app binary

天大地大妈咪最大 提交于 2019-12-08 01:36:24
问题 I'm investigating how to create a server side iOS crash report symbolication server like Crashlitics or Crittercism or HokeyApp, from I can see, they only ask the user to upload the .dSYM file then they are able to symbolicate the crash report, I'm wondering how they archive it? Apple's standard symbolicatecrash command needs the app binary and the .dSYM file being provided together: Symbolication - resolving stack trace addresses to source code methods and lines - requires the application

How to disable non-ASCII characters in dexguard obfuscation?

拈花ヽ惹草 提交于 2019-12-07 11:57:06
问题 We are using Crittercism to analyze our app-crashes, but since we also use DexGuard with default obfuscation-options, Crittercism is unable to de-obfuscate the stacktraces with the mappings.txt generated by DexGuard. So, my question is simple: How can I disable Non-ASCII characters for DexGuard-obfuscation? We are using the Gradle-buildsystem btw. 回答1: Curious what led you to think that disabling Non-ASCII characters would fix Crittercism's handling of DexGuard-obfuscated stacktraces? AFAIK

Symbolicate crash report without the app binary

99封情书 提交于 2019-12-06 07:50:43
I'm investigating how to create a server side iOS crash report symbolication server like Crashlitics or Crittercism or HokeyApp, from I can see, they only ask the user to upload the .dSYM file then they are able to symbolicate the crash report, I'm wondering how they archive it? Apple's standard symbolicatecrash command needs the app binary and the .dSYM file being provided together: Symbolication - resolving stack trace addresses to source code methods and lines - requires the application binary that was uploaded to the App Store and the .dSYM file that was generated when that binary was

How to disable non-ASCII characters in dexguard obfuscation?

好久不见. 提交于 2019-12-06 02:31:05
We are using Crittercism to analyze our app-crashes, but since we also use DexGuard with default obfuscation-options, Crittercism is unable to de-obfuscate the stacktraces with the mappings.txt generated by DexGuard. So, my question is simple: How can I disable Non-ASCII characters for DexGuard-obfuscation? We are using the Gradle-buildsystem btw. Curious what led you to think that disabling Non-ASCII characters would fix Crittercism's handling of DexGuard-obfuscated stacktraces? AFAIK they would need to use the ReTrace.jar that's part of DexGuard not ProGuard (sorry i don't know if it's

Only some users reporting “Resource Not Found” error. Does this make sense?

99封情书 提交于 2019-11-30 10:48:50
I am seeing a a couple of errors coming up on Crittercism (Crash reporting service) for my published Android app. The trace is the following: 0 java.io.IOException: Resource not found: "org/joda/time/tz/data/ZoneInfoMap" ClassLoader: dalvik.system.PathClassLoader@45908320 1 at org.joda.time.tz.ZoneInfoProvider.openResource(ZoneInfoProvider.java:211) 2 at org.joda.time.tz.ZoneInfoProvider.<init>(ZoneInfoProvider.java:123) 3 at org.joda.time.tz.ZoneInfoProvider.<init>(ZoneInfoProvider.java:82) 4 at org.joda.time.DateTimeZone.getDefaultProvider(DateTimeZone.java:462) 5 at org.joda.time

Detect app crashed during load / last time it was run?

会有一股神秘感。 提交于 2019-11-28 04:24:10
I would like for my app to reset to standard settings if it crashed during startup. Preferably also if it crashed last time it was run . EDIT: Crittercism has a crittercismDidCrashOnLastLoad method, but it only handles the case of crashing during load. It didn't work properly in the version of the library I used, but this has since been fixed. Suggestions? Make 2 functions in your AppDelegate.m file: void HandleException(NSException *exception) { NSLog(@"App crashing with exception: %@", exception); //Save somewhere that your app has crashed. } void HandleSignal(int signal) { NSLog(@"We