google-fabric

crashlyticsDidDetectCrashDuringPreviousExecution for crashlytics NDK

左心房为你撑大大i 提交于 2019-12-12 02:25:58
问题 We are using crashlyticsDidDetectCrashDuringPreviousExecution to detect java crashes and report them to our bi systems, but our app is mostly C++ and we are using crashlytics NDK, we can't find anything similar to crashlyticsDidDetectCrashDuringPreviousExecution. any way that we can actually detect an NDK crash when the app starts? thanks Oded 回答1: Mike from Fabric here. Currently, there isn't a way to do this within Fabric or the SDK for an NDK crash. 回答2: NOTE: This works on older version

Fabric and Crashlytics not working with Bazel build

三世轮回 提交于 2019-12-11 09:08:57
问题 I'am building an android app which uses fabric-crashlytics for logging all the crashes in devices. This particular line of code: Crashlytics crashlyticsKit = new Crashlytics.Builder() .core(new CrashlyticsCore.Builder().disabled(false).build()) .build(); Fabric.with(this, crashlyticsKit); is crashing with Bazel, but, when I set this value to "true"..(i.e., I'am disabling Crashlytics ), this application's Bazel build is working fine. But, If I'am building a normal android app it's not crashing

Fabric missing DSYMs even though log says it uploaded them

走远了吗. 提交于 2019-12-11 05:44:14
问题 For my iOS app I use Jenkins to distribute my test builds. I use Fabric for crash reporting. I run the post build scripts on Jenkins to upload ipa, release notes and DSYMs to Fabric. This is the script I run to upload DSYMs: ${WORKSPACE}/Pods/Fabric/upload-symbols -a {api-key} -p ios ${WORKSPACE}/artifacts/TestDebug-iphoneos/${PROJECT_NAME}.app.dSYM source for the script In the build logs on Jenkins I see: upload-symbols[91261:22647730] Successfully submitted symbols for architecture arm64

Not receiving crashes on crashlytics while do internal testing

让人想犯罪 __ 提交于 2019-12-11 04:56:36
问题 I have integrated crashlytics with the pod. I used to test application with Testflight. I have noticed that there were few crashed on iTunes connect but Did not received any email from fabric/crashlytics. I Try app crash manually like exit(1) and I received an email on very next launch of the application. So assuming that crashlytics framework integrated successfully. Do you have any suggestion where I suppose to look? 回答1: Mike from Fabric here. Our email notifications will not be sent on

Error code 403 when using guest authentication with TwitterKit iOS for getting user timeline

徘徊边缘 提交于 2019-12-11 02:25:26
问题 I am using Fabric's twitter kit for getting a username's tweets in my iOS application by making a request to the REST API endpoint "https://api.twitter.com/1.1/statuses/user_timeline.json" I am have correctly set up my "consumer key" and "consumer secret key" as provided by the Fabric app in my AppDelegate and info.plist , but I repeatedly get the following error message - Error: Optional(Error Domain=TwitterAPIErrorDomain Code=200 "Request failed: forbidden (403)" UserInfo=

How to log on Fabrics a long message

一世执手 提交于 2019-12-11 02:11:37
问题 I'm trying to write a long text log message on Fabrics system (Android), like this: Answers.getInstance().logCustom(new CustomEvent("Request:" + requestUrl + "\nResponse:" + json)); The message become cut, and can't find a way to expand it: Even when the message is added as a custom attribute, like @Alexizamerican suggested, Answers.getInstance().logCustom(new CustomEvent("Requests")) .putCustomAttribute("Request", requestUrl + "\nResponse:" + json) it stays cut in the Events Dashboard, see

Daily New Users seems to be Incorrect in Fabric Answers

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-10 16:25:30
问题 We have a Android and iOS version of our app. The number of active users on iOS is aproximately 25% of the active user on the Android app. It happens that the count of Daily New Users of the Android app is always far less then the iOS's. And the this number does not seems to match the increase in Daily Active Users. The app is br.com.bb.android. Anyone has an idea of what may be causing this? Would be great if someone in the Fabric team could take a look into this. 回答1: Mike from Fabric here.

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: