crashlytics

Fastlane Appfile in GIT? How to retrieve current apple_id?

情到浓时终转凉″ 提交于 2019-12-10 17:52:14
问题 I setup Fastlane for the build automation for my XCode project. At least the Fastfile (containing the build options) should be in GIT, but I would also be happy to have the Appfile (Team Identifiers) also in GIT. The main issue: The Appfile should contain the apple id of me. Sample: apple_id "myid@gmail.com" # Your Apple email address # Default team ID team_id "AUE7D4LRRX" for_platform :ios do for_lane :production do team_id '-' #reset team id end end Is it somehow possible to dynamically

Firebase Crashlytics Invalid Key Error

大兔子大兔子 提交于 2019-12-10 17:33:17
问题 I want to integrate Firebase Crashlytics into my Android game (developed using Cocos2D-X engine). I have followed the steps mentioned in this link. I'm getting following error when building the project using Android Studio: ERROR - Crashlytics Developer Tools error. java.lang.IllegalArgumentException: Crashlytics found an invalid API key: null. Check the Crashlytics plugin to make sure that the application has been added successfully! It looks like that I am missing some API key. How can I

Answers By Crashlytics - adding custom event

試著忘記壹切 提交于 2019-12-10 17:08:04
问题 I have an app using Crashlytics with Answers. Both are working right, and I am seeing events that are built into the framework being tracked. I am trying to add a custom event, by using the following line of code in my View Controller: Answers.logCustomEventWithName("Flight Complete", customAttributes: nil) My issue is that the compiler doesn't recognize the Answers object. It just tells me "Use of unresolved identifier "Answers"" Which makes sense because I've never declared it. I am unsure

Crashlytics log not sent

旧时模样 提交于 2019-12-10 14:47:47
问题 I have Crashlytics properly configured in my app. I can see crash reports. I tried to add a custom log to the crash reports but I do not see anything in the report. I tried to move the log out of the uncaughtException handler and in that case I see the logs. So if I log while the application is running properly then I see the logs in the crash report when the application crashes but if I try to add a log in my uncaughtException handler these logs are not shown. is this the proper behaviour? I

Crash Firebase vs Crashlytics vs HockyApp

蓝咒 提交于 2019-12-10 13:47:26
问题 I've been using Crashlytics in application, our client using HockeyApp, and I came to know by the recent updates to Google Firebase. Has anyone had a chance to use above tools, what are your overview and suggestion? Did you like one over the other... and why? Have a great day. 回答1: I'm afraid I can't speak for HockeyApp at all, but I have some experience in using Firebase and Crashlytics using iOS and Android clients. The below paragraphs don't factor in HockeyApp, and only compare Firebase

Crashlytics not sending crash Reports to my Fabric dash board?

笑着哭i 提交于 2019-12-10 13:42:09
问题 In My app previously used fabric for twitter integration purpose. Now i want crashlytics .so i followed as fabric guided me added framework to my project #import "AppDelegate.h" #import <Fabric/Fabric.h> #import <Crashlytics/Crashlytics.h> - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{ [Fabric with:@[TwitterKit, CrashlyticsKit]]; } later i added run script in Build Phase also checked with Force crash but i didn't get any crash

How to access ext variables in Gradle

别等时光非礼了梦想. 提交于 2019-12-10 13:18:30
问题 I am trying to get the variable defined in a 3rd party library (fabric) to do a condition based on whether Crashlytics is enabled or not. ext.enableCrashlytics = true http://support.crashlytics.com/knowledgebase/articles/202938-gradle The variable can be configured in buildTypes or in flavors but I can't find a way to access it elsewhere in my build.gradle I tried several things without any luck. allprojects.getProperties().get("enableCrashlytics") project.enableCrashlytics project.ext

How to add new application to Fabric

扶醉桌前 提交于 2019-12-10 13:07:18
问题 Something has been changed since I added my last application to Fabric because I just can't find how to add a new one. I made this: Settings -> Apps -> Add . The last step redirects me to the Kits page where I don't know how to continue. 回答1: Paul from Fabric here. To install a new app, choose the Crashlytics kit and follow the instructions there. For iOS: https://fabric.io/kits/ios/crashlytics/install For Android: https://fabric.io/kits/android/crashlytics/install 回答2: Just plugin in android

Crashlytics record error

纵然是瞬间 提交于 2019-12-10 12:58:58
问题 I am recording an error using Crashlytics for iOS. NSDictionary *detail = @{@"message":errorWithURL, @"response":jsonString}; [[Crashlytics sharedInstance] recordError:[NSError errorWithDomain:@"send request" code:0 userInfo:detail]]; But I do not see the message in Crashlytics console. See here. Am I doing something wrong here? 回答1: From Fabric Docs - "Data contained within the userInfo object are converted to key-value pairs and displayed in the keys/logs section within an individual issue.

Why integrated fabric(crashlytics) with gitlab does not send issues to gitlab?

自闭症网瘾萝莉.ら 提交于 2019-12-10 12:22:55
问题 I use fabric-Crashlytics in my android app and initiate it in Application class via Fabric.with(new Fabric.Builder(this) .kits(new Crashlytics(), new Answers()) .debuggable(true) .build() ); I integrated fabric with gitlab in fabric's service hooks successfully, It means when I press "Send Test" blue button on fabric I'll receive an issue in gitlab. BUT when I force app to crash via [ Crashlytics.getInstance().crash(); ] ,I don't get any issue in gitlab, Why? How Can I fix this problem? 回答1: