crashlytics

Crashlytics says “Received null settings, skipping report submission”

喜你入骨 提交于 2019-12-04 16:35:14
问题 I am trying to switch from Firebase Crash reporting to Firebase Crashlytics. I have followed the guide here: https://firebase.google.com/docs/crashlytics/upgrade-from-crash-reporting But during initialization the logs says: Received null settings, skipping report submission! And then when testing crashes: Cannot send reports. Settings are unavailable. Network connection is good, so no reason why it can't get settings. Log output: D/CrashlyticsCore: Initialization marker file created. W

Exception in plugin Fabric for Android Studio

删除回忆录丶 提交于 2019-12-04 16:09:09
问题 I've installed the latest Fabric plugin for Android Studio and it run fine for a while. Just after updating to Android Studio 1.1.0 I got this in event log: And the NullPointerException: update failed for AnAction with ID=Actions.Crashlytics.CrashlyticsAction java.lang.NullPointerException at com.crashlytics.tools.intellij.CrashlyticsPlugin.getCrashlyticsBridge(CrashlyticsPlugin.java:104) at com.crashlytics.tools.intellij.actions.CrashlyticsAction.getDelegate(CrashlyticsAction.java:24) at com

fatal error: 'Fabric/Fabric.h' file not found

天大地大妈咪最大 提交于 2019-12-04 14:41:24
I am working on xcode 6.3.1, OSX 10.10.3 and I have configure crashlytics successfully with my local system. it work fine and it release the build via fabric app. But when I transfer same codebase to teamcity it was showing me following error fatal error: 'Fabric/Fabric.h' file not found fatal error: 'Crashlytics/Crashlytics.h' file not found After investigation, I found that following unknown issue in my teamcity server. Teamcity got the source from git and when I see the source code in teamcity, Crashlytics.framworks & fabric.framworks are available but when you look into folder structure it

Why does a new user account fix my pod install?

别等时光非礼了梦想. 提交于 2019-12-04 14:38:39
问题 I'm using cocoapods, and it errors every time it tries to install Crashlytics. This is the error: [!] /usr/bin/curl -f -L -o /var/folders/3l/8_q_611x0ms5z5pk1n_79g_40000gn/T/d20160630-21289-u98pwu/file.zip https://kit-downloads.fabric.io/cocoapods/crashlytics/3.7.2/crashlytics.zip --create-dirs --netrc % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (35) SSL peer handshake failed, the server

What is the best way to hide Crashlytics key?

白昼怎懂夜的黑 提交于 2019-12-04 13:56:19
I put my crashlytics key in xml and I got this error: Error:Execution failed for task ':app:fabricGenerateResourcesDebug'. Crashlytics Developer Tools error. The following is my intended code in AndroidManifest.xml . <meta-data android:name="io.fabric.ApiKey" android:value="@string/crashlytics_key" /> What is the best way to hide it? Place your API key in local.properties. crashlytics.key=api_key_here In your build.gradle, add this Groovy method: def getLocalProperty(String propertyName) { def propsFile = rootProject.file('local.properties') if (propsFile.exists()) { def props = new Properties

fabric.io missing dSYM even after upload

一曲冷凌霜 提交于 2019-12-04 09:19:41
I have the error: "It looks like we are missing dSYMs to process crashes for the versions below." - I have downloaded the dSYMs in the Xcode organiser, found the .xarchive and zipped the corresponding dSYMs folder and uploaded with success; but the error does not disappear i.e. does nothing: How can I symbolicate my crash reports? dSYM Folder: I just had the same issue and searching for solutions brought me here. Since this is missing an answer and I solved the issue for me, I'll resurrect this question to maybe help others having the same issue in the future.   Below the part shown in your

Swift crash on a line that only has a bracket

徘徊边缘 提交于 2019-12-04 05:28:41
I'm struggling to understand how a program can crash on a line with just a bracket. My open-source app, Steppy 2, is having this problem. I have been unable to replicate this myself, but multiple users have reported this problem and have sent crash reports. The crash occurs on the last bracket: func loadBars() { let graphView = UIView(frame: CGRectZero) graphView.setTranslatesAutoresizingMaskIntoConstraints(false) self.addSubview(graphView) self.addConstraints(NSLayoutConstraint.constraintsWithVisualFormat("H:|[view]|", options: nil, metrics: nil, views: ["view":graphView])) self

react-native-firebase crashlytics not showing up on firebase dashboard

南楼画角 提交于 2019-12-04 05:27:12
I am using firebase crashlytics. I am causing a crash by doing firebase.crashlytics().crash() and I am not seeing the crash report on the firebase dashboard. The crash is working because on android i get this screen and on ios the app freezes and i get brought to this page on xcode But on the crashlytics dashboard on firebase the crashes are not showing up. Is there any reason why the crashes are not showing up on crashlytics dashboard? I am using react-native-firebase. I know i installed it correctly because I tried causing the crashes natively on android with java and I am able to see the

Missing DYSM Error on multiple Target in Fabric and Objective C

蓝咒 提交于 2019-12-04 04:56:12
问题 In my app there are two targets: Target 1 : MyApp - com.app.myapp Target 2 : MyAppQA - com.app.myappQa Email Id used for Fabric registration is same for both targets. I have created two apps using Fabric mac app . In MyApp Target Fabric is catching all the crash and working fine. But When I run using target MyAppQA then I am getting Missing DYSM file error. I am not able to get why crash is not captured in my second target. Here is the method which I tried: BitCode - Disabled (Although I am

Crashlytics timed out during initialization

最后都变了- 提交于 2019-12-04 03:27:43
When I run my Android app with Crashlytics, it hangs at startup, and I get a TimeoutException . Then, when I try to crash my app, I get another TimeoutException, with the message CrashlyticsCore: Failed to execute task . The crash doesn't appears on my Firebase console. I set up Crashlytics Firebase's tutorial, and I do not have a Fabric account. I also followed this commit , making me add the gms.google-services plugin. Thanks for your help. I had this problem today and in my case downgrading from implementation 'com.crashlytics.sdk.android:crashlytics:2.9.4' to implementation 'com