crashlytics

Android Jenkins build fails with crashlytics

筅森魡賤 提交于 2019-11-30 20:22:53
Everytime I try to build using Jenkins I get the following error Failed to apply plugin [id 'io.fabric'] Could not create plugin of type 'CrashlyticsPlugin'. Removing Crashlytics from Gradle fixes this issue Shubham Chaudhary These are the final commands that you need to follow: sudo mkdir -p /Users/Shared/Jenkins/Library/Caches/com.crashlytics sudo chown -R jenkins:jenkins /Users/Shared/Jenkins/Library Here is the relavant debug log for this case: 13:33:45.133 [ERROR] [org.gradle.BuildExceptionReporter] at com.crashlytics.tools.gradle.CrashlyticsPlugin.<clinit>(CrashlyticsPlugin.groovy:13) 13

Today Extension widget freezes when the main app is updated

余生颓废 提交于 2019-11-30 20:06:40
问题 I am suffering from Today Extension freezing issue when the main app is updated. In detail, I recently found that Today Extension freezes after updating the main app from Crashlytics Beta service. After that, all of touchable things like a button does not work. I tried to reinstall the widget by setting menu supported by Today but failed. The only way to solve this symptom is rebooting iPhone device. You know, however, this is not proper solution. What makes the widget freeze after updating a

Crashlytics don’t send crash report when there is another crash report (Umeng)

房东的猫 提交于 2019-11-30 16:56:07
I’ve implemented Crashlytics (2.2.4) in my iOS app for crash report collection. I also implemented another third-party component (Umeng) for other data collection. However, Crashlytics doesn’t send report when Umeng is turned on. When I check the log, there are these suspicious warnings: [Crashlytics] Warning: NSUncaughtExceptionHandler is 'UmengHandleException' [Crashlytics] Warning: sigabrt handler is ‘UmengSignalHandler' [Crashlytics] Warning: sigbus handler is 'UmengSignalHandler' [Crashlytics] Warning: sigfpe handler is 'UmengSignalHandler' [Crashlytics] Warning: sigill handler is

How do you set the time zone in Crashlytics?

柔情痞子 提交于 2019-11-30 14:29:35
问题 How do you set the time zone in Crashlytics? It's showing in UTC now, and I don't see the setting that allows you to change it. 回答1: For instance, there is no way to do that. Today, I've received an email from Crashlytics' support team where they informed that this request is already on their roadmap. On the other hand, they still don't have any idea when this feature will be launched. 来源: https://stackoverflow.com/questions/26061342/how-do-you-set-the-time-zone-in-crashlytics

Crashlytics Error:(11, 0) Plugin with id 'io.fabric' not found compile lib

对着背影说爱祢 提交于 2019-11-30 08:19:09
I am getting the error, Error:(11, 0) Plugin with id 'io.fabric' not found when trying to run crashlytics on my project. I faced the same issue, when tried to use Fabric plugin for android studio(automated code generation by plugin). I followed this documentation also. And finally, I could see there were some missed lines in build.gradle. So this is the top level project build.gradle // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { repositories { jcenter() maven { url 'https://maven.fabric.io/public' } } dependencies { classpath

Xcode Bitcode, Include Symbols settings effect on dSYM generation

旧城冷巷雨未停 提交于 2019-11-30 05:25:59
Since I use Crashlytics to handle my crashes, I always uncheck the “Include app symbols for your application to receive symbolicated crash logs from Apple” and keep the "Include Bitcode" one checked (future proof for Apple Watch) before submitting my app to iTunes Connect like this : Crashlytics has an article about issue with Bitcode and missing dSYMs : https://docs.fabric.io/apple/crashlytics/missing-dsyms.html#bitcode-download According to their screenshot, to download the new generated dSYM file created by Bitcode, there is a download link available directly in iTunes Connect, BUT, it

Android Jenkins build fails with crashlytics

痴心易碎 提交于 2019-11-30 04:59:44
问题 Everytime I try to build using Jenkins I get the following error Failed to apply plugin [id 'io.fabric'] Could not create plugin of type 'CrashlyticsPlugin'. Removing Crashlytics from Gradle fixes this issue 回答1: These are the final commands that you need to follow: sudo mkdir -p /Users/Shared/Jenkins/Library/Caches/com.crashlytics sudo chown -R jenkins:jenkins /Users/Shared/Jenkins/Library Here is the relavant debug log for this case: 13:33:45.133 [ERROR] [org.gradle.BuildExceptionReporter]

Integrate Fabric/Crashlytics via CocoaPods

孤者浪人 提交于 2019-11-29 21:15:32
I try to integrate Fabric/Crashlytics via CocoaPods, my Podfile looks like this: pod 'Fabric/Core', '1.2' pod 'Fabric/Crashlytics', '1.2' But when I try to build my app, the build fails and I get a Shell Script Invocation Error that the run script isn't found: .../Script-F8D74CB61AB5D7A50013D134.sh: line 2: ./Fabric.framework/run: No such file or directory Is it possible to install Fabric only using CocoaPods? Fabric now supports installation with CocoaPods: http://docs.fabric.io/ios/fabric/cocoapods.html If you are just looking for Crashlytics you can use these two pods: pod 'Fabric' pod

Android ActivityThread.reportSizeConfigurations causes app to freeze with black screen and then crash

余生颓废 提交于 2019-11-29 20:09:43
I have a crash in my app. It happens for a lot of users and its multiple places in ActivityThread.java method reportSizeConfigurations. I dont know what this is used for, and why it freezes. The freeze happens right after the splash screen (when the main activity is started) and is only happening on upgrading of the app. If you reinstall the application the problem goes away. Problem is, I cant tell all the users to reinstall the application... Does anyone know what might cause this and why? It seems maybe to be connected with some DB handling, but thats just a guess. Heres the stacktrace from

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