crashlytics

submit app to crashlytics

核能气质少年 提交于 2019-12-05 18:06:19
问题 When I added a new configuration to my current iOS app and built, packaged it correctly, but it failed to deploy onto crashlytics: Deploying the app on Crashlytics... 2015-04-15 22:23:20.593 submit Crashlytics: Crashlytics.framework/submit 1.3.1 (11) 2015-04-15 22:23:26.167 submit Crashlytics: Unable to add release notes: Project OMQA is inactive 2015-04-15 22:23:26.167 submit Crashlytics: Failed to add notes to the release A problem with crashlytics occured while deploying Is that the

On iOS, how to disable popup that reminds new versions and updates in old versions from Crashlytics Beta

爷,独闯天下 提交于 2019-12-05 14:27:16
This is regarding the iOS Enterprise apps downloaded from Crashlytics Beta Platform. Whenever there're new versions uploaded, when the old apps are launched, there will be popup that reminds user of new versions and updates in Crashlytics Beta. This seems to be automatically added by Crashlytics Beta. Just want to ask, is it possible to disable the popup so that testers can keep using the old app to do regression test? We couldn't seem to be able to find any configurations or settings about this. Mike from Fabric here. There is not a way to disable that notification currently on a per version

Crashlytics : stuck on “Verifying Installation…” step

旧时模样 提交于 2019-12-05 12:25:59
问题 I want to use Crashlytics on my application. I followed every step but I'm stuck on "Verifying Installation..." step. What is the problem ? 回答1: setDebugMode = YES set below code before [Fabric with:@[ TwitterKit ]]; if applied for twitter kit. Or you can simply past below code in didFinishLaunchingWithOptions. // Swift Crashlytics().debugMode = true Fabric.with([Crashlytics.self()]) // Objective-C [[Crashlytics sharedInstance] setDebugMode:YES]; [Fabric with:@[[Crashlytics class]]]; Now

Disable firebase crashlytics for Android

时光总嘲笑我的痴心妄想 提交于 2019-12-05 11:44:04
I am developing an android app and have integrated the firebase and firebase crashlytics SDK. I want to allow the user to disable crash reporting (to ensure GDPR compliance - I assume crash reports are related to GDPR) so need a way for the user to be able to disable it via the apps settings. I found the docs at https://firebase.google.com/docs/crash/disable-sdk but when I try and the line: FirebaseCrash.setCrashCollectionEnabled(true); Android Studio gives me the error cannot resolve symbol 'FirebaseCrash' This needs to be done programatically at runtime of the app. Disable Crashlytics at

Added Fabric/Crashlytics to new project but doesn't upload dSYM

℡╲_俬逩灬. 提交于 2019-12-05 09:39:33
问题 I've just created a new iOS Swift project, using Xcode 7 beta-4, and have integrated Crashlytics (part of Fabric now) with the usual process. It integrated all fine, and I can simulate crashes etc. However when I go to the Crashlytics dashboard it warns me that: Missing dSYM We're missing a dSYM to process crashes, upload it here! And none of the crashes show up. Clicking the warning message (it's link is mentioned here: http://docs.fabric.io/ios/crashlytics/crashlytics.html#troubleshooting)

Firebase Crashlytics: Upload missing dSYMs to see crashes from 1 versions.(iOS)

我们两清 提交于 2019-12-05 09:20:17
问题 Error Message: Upload missing dSYMs to see crashes from 1 versions. Versions affected: 1.0 (1) I am trying to implement Firebase Crashlytics in my iOS project. I did all the setups according to Firebase Crashlytics Doucmentation. The crash is performed manually when the button is clicked just to see whether the crashlytics is working. @IBAction func onTestCrashButtonClick(_ sender: UIButton) { Crashlytics.sharedInstance().crash() } But when i tried to see the error report in the firebase

Crashlytics: Archive Distribution Error: -3

余生长醉 提交于 2019-12-05 08:00:50
Since the latest builds I'm always getting the following error message when trying to upload the build to Crashlytics. Archive Distribution Error: -3 Could not upload the distribution. The operation couldn't be completed. (HTTP error 422.) I've tried the following: restart Xcode and Fabric plugin rm -rf ~/Library/Caches/com.crashlytics.mac different internet connections (WiFi, mobile) Mike from Fabric here. We had a temporary issue where distributions could not be uploaded. That issue has been resolved, so you should be all set now to distribute now. For reference, the Fabric status page and

How to set user information to Crashlytics api in Android

帅比萌擦擦* 提交于 2019-12-05 07:40:34
I am trying to set user information to crash reports in crashlytics in Android App, so that it will help me to find out which of our users experienced a given crash. I have explored and found there are 3 APIs can set user information in crash report. Those are, void Crashlytics.setUserIdentifier(String identifier); void Crashlytics.setUserName(String name); void Crashlytics.setUserEmail(String email); It is recommended to use all the APIs. All documented at http://support.crashlytics.com/knowledgebase/articles/120548-how-do-i-set-user-information- But I have no idea, 1. How to get user

How to Disable Crashlytics/Fabric at Runtime when User Changes Preferences

丶灬走出姿态 提交于 2019-12-05 06:18:23
I am using com.crashlytics.sdk.android:crashlytics:2.3.2@aar version of crashlytics and i disable crash reporting if user opt out. I tried this solution but still it is not working, crash reports are still being sent to Fabric. I am doing it as: Preference errorReportingEnabled = findPreference(MatlistanPrefs.BUGREPORTS_SEND_AUTOMATICALLY); errorReportingEnabled.setOnPreferenceChangeListener(new OnPreferenceChangeListener() { @Override public boolean onPreferenceChange(Preference preference, Object newValue) { Boolean value = (Boolean) newValue; Fabric.with(DataCollectionSettingsActivity.this,

Firebase Crashlytics not working without Fabric API key

霸气de小男生 提交于 2019-12-05 05:12:16
I got an android app where Fabric Crashytics is installed. I've followed the official guide to setup Firebase Crashlytics and linked the Fabric and Firebase accounts (AFAIK Firebase acquired Fabric recently). So in particular I removed the Fabric API key with <meta-data/> tag in manifest.xml . Then I tried to make a test crash but it didn't appear neither in Firebase not Fabric dashboard, however I got a success log in logcat: Crashlytics report upload complete: <ID> . When I sniffed the network, it appeared that I'm getting 403 Unathorized from Crashlytics. However when I add the Fabric API