crashlytics-android

Crashlytics Android NDK: missing all symbols in crash reports

笑着哭i 提交于 2020-01-13 09:10:53
问题 Our native Crashlytics crash reports are missing all symbol information as of late. I had hoped that the latest Crashlytics NDK would resolve the issue, but it does not. I see that there is a similar query out there, but in this case I am not using Firebase, just Crashlytics, and had been doing so successfully for quite some time. Our build.gradle (using CMake and the Gradle 3.0.0 or 3.1.0 Android plugin -- same issue either way) contains: buildscript { ... dependencies { ... classpath 'io

App crashes when i apply crashlytics on it

蓝咒 提交于 2020-01-12 04:10:15
问题 App crashes when i apply crashlytics on it FATAL EXCEPTION: main Process: com.ehs.pk, PID: 20963 java.lang.RuntimeException: Unable to get provider com.crashlytics.android.CrashlyticsInitProvider: java.lang.ClassNotFoundException: Didn't find class "com.crashlytics.android.CrashlyticsInitProvider" on path: DexPathList[[zip file "/data/app/com.ehs.pk-8.apk"],nativeLibraryDirectories=[/data/app-lib/com.ehs.pk-8, /vendor/lib, /system/lib]] at android.app.ActivityThread.installProvider

Unable to find meaningful logs for ReactNative using Crashlytics

此生再无相见时 提交于 2020-01-02 18:38:18
问题 I have integrated Crashlytic in reactNative application and tried to check crash logs generated from js files. Its able to capture them but not providing information about the file name. Logs are giving location from index.android.bundle file which are hard to provide any information about crash location. I have already tried react-native-fabric-crashlytics and react-native-fabric npm modules Setting default logger for react native as mentioned in https://www.mojotech.com/blog/fabric

Crashlytics with StrictMode enabled (detect all) gives “untagged socket detected”

試著忘記壹切 提交于 2019-12-31 03:58:05
问题 I've tried adding Crashlytics to my app, which already has StrictMode enabled with detectAll() . The result was Untagged socket detected; use TrafficStats.setThreadSocketTag() to track all network usage . Full Stack: E/StrictMode: null java.lang.Throwable: Untagged socket detected; use TrafficStats.setThreadSocketTag() to track all network usage at android.os.StrictMode.onUntaggedSocket(StrictMode.java:2012) at com.android.server.NetworkManagementSocketTagger.tag(NetworkManagementSocketTagger

Cannot initialize Crashlytics NDK

妖精的绣舞 提交于 2019-12-24 16:03:29
问题 I got a problem in initalizing Crashlytics for Android. The Java part works correctly but i cannot make NDK part to work because crashlytics_init() return a null value; My project/build.gradle buildscript { repositories { jcenter() google() maven { url 'https://maven.fabric.io/public' } } dependencies { classpath 'com.android.tools.build:gradle:3.0.0' classpath 'io.fabric.tools:gradle:1.24.4' classpath 'com.google.gms:google-services:3.1.0' } } allprojects { repositories { jcenter() google()

One line NDK crashlogs on android

你说的曾经没有我的故事 提交于 2019-12-24 08:56:53
问题 We have application which depends on ndk library packaged as aar. Also this app builds it's own NDK code using cmake. We upload symbols using crashlyticsUploadSymbols<Flavor> task. And when I check build/fabric/<flavor>/release/csyms there is csym files for both libraries and all our supported architectures. Everything seems ok, but native crashes symbolicated like this. Lots info about system lines and no info about contents of libglmapview which is most interesting part of every crash. What

Whitelisting Fabric & Crashlytics IP

ⅰ亾dé卋堺 提交于 2019-12-23 18:16:56
问题 Question - would like to allow access to Fabric & Crashlytics from our server which means that we need to allow it through our firewall for access. Can anyone share the domains or IPs that we should allow through ? Secondly, we would also like the fabric plugin for Android Studio and Xcode to work, would the above domains and IPs also apply ? 回答1: Mike from Fabric and Firebase here. We don't support IP whitelisting as our IP addresses can and do change quite frequently. You should whitelist

java.lang.ClassNotFoundException: Didn't find class “io.fabric.sdk.android.services.common.FirebaseInfo”

。_饼干妹妹 提交于 2019-12-23 15:37:34
问题 I am trying to update Fabric Crashlytics from 2.6.8 to 2.7.1 But I am facing below crash with this update: 10-24 11:38:32.917 11352-11352/? E/AndroidRuntime: FATAL EXCEPTION: main Process: com.xxx.yyy, PID: 11352 java.lang.NoClassDefFoundError: Failed resolution of: Lio/fabric/sdk/android/services/common/FirebaseInfo; at com.crashlytics.android.CrashlyticsInitProvider.onCreate(CrashlyticsInitProvider.java:22) at android.content.ContentProvider.attachInfo(ContentProvider.java:1919) at android

Fabric crash at startup

妖精的绣舞 提交于 2019-12-23 12:34:01
问题 My app crashed at this line inside onCreate() function Fabric.with(this, new Crashlytics()); The device is SAMSUNG SM-G313 HZ, running 4.4.2 I've reported to their Twitter dev forum, but my post is automarked as spam. Anybody knows a workaround? This is the onCreate function: public void onCreate() { super.onCreate(); Fabric.with(this, new Crashlytics()); graph = ObjectGraph.create(getModules()); ImageLoaderConfiguration imageLoaderConfiguration = ImageLoaderConfiguration. createDefault

Proguard with Crashlytics

偶尔善良 提交于 2019-12-23 09:35:14
问题 We have added crashlytics in our android application, and we are using proguard . So, as the crashlytics documentation says, we have added the following code in our proguard configuration file: -keep class com.crashlytics.** { *; } -keep class com.crashlytics.android.** -keepattributes SourceFile,LineNumberTable *Annotation* Unfortunately, when we sign the APK, we get the following error: java.io.IOException: proguard.ParseException: Unknown option '*Annotation*' What are we doing wrong?