fabric.io

How to migrate from Fabric Crashlytics to Firebase Crashlytics?

余生颓废 提交于 2020-12-08 05:49:47
问题 I have an app that logs crashes and non-fatals to Fabric Crashlytics and uses Firebase Analytics to log analytics events. I want to migrate from Fabric Crashlytics to Firebase Crashlytics. In addition I want to save historical data from Fabric during the migration. When I try to do it with provided mechanism of Firebase Migration (https://fabric.io/firebase_migration/apps) I cannot do it in a way I want to. In particular, I cannot provide existent Firebase project ID for migration. I see

How to migrate from Fabric Crashlytics to Firebase Crashlytics?

末鹿安然 提交于 2020-12-08 05:48:03
问题 I have an app that logs crashes and non-fatals to Fabric Crashlytics and uses Firebase Analytics to log analytics events. I want to migrate from Fabric Crashlytics to Firebase Crashlytics. In addition I want to save historical data from Fabric during the migration. When I try to do it with provided mechanism of Firebase Migration (https://fabric.io/firebase_migration/apps) I cannot do it in a way I want to. In particular, I cannot provide existent Firebase project ID for migration. I see

How to get the event count for the current Android user using Fabric's Answers or Google Analytics?

。_饼干妹妹 提交于 2020-07-23 10:20:06
问题 I have an app logging a custom event into Fabric's Answers as follows: Answers.getInstance().logCustom(new CustomEvent("AnEvent"); Using Answers API for apps, is it possible to query the total number of occurences of this event for the current user ? If not possible with Answers, is it possible with Google Analytics for Firebase ? 回答1: I had run into the same problem. It appears this will now need to be done with Firebase Analytics and not the new crashlytics within Firebase. I previously was

How to get the event count for the current Android user using Fabric's Answers or Google Analytics?

让人想犯罪 __ 提交于 2020-07-23 10:19:58
问题 I have an app logging a custom event into Fabric's Answers as follows: Answers.getInstance().logCustom(new CustomEvent("AnEvent"); Using Answers API for apps, is it possible to query the total number of occurences of this event for the current user ? If not possible with Answers, is it possible with Google Analytics for Firebase ? 回答1: I had run into the same problem. It appears this will now need to be done with Firebase Analytics and not the new crashlytics within Firebase. I previously was

What data is being sent to the Fabric server ? [Fabric/Crashlytics]

こ雲淡風輕ζ 提交于 2020-05-28 05:24:05
问题 We are working on a restricted Banking iOS/Android App and before integrating Fabric.io to our app we need to know what data will be sent to Fabric cloud Our two main concerns are : What is the data that will be sent to Fabric servers? Is there a possibility that it can send any sensitive data like accessKey/username/password etc. Does it have access to all the codes in our app? 回答1: Mike from Fabric here. We collect just the minimum amount of data to provide you with high quality crash

Twitter Login Stopped Working “sorry, that page doesn't exist”

戏子无情 提交于 2020-02-08 00:50:34
问题 I'm logging users in with twitter using the PFTwitterUtils loginWithBlock: method. This has always worked fine and the name of my app appears above the username and p/w ready for user input. However, recently (which may or may not correspond to installing Fabric.io) the modal display that appears, after entering the username and password and pressing authorise app, returns this image: Has something changed with the sdk lately? Or have i made a silly error while changing something. In short,

How can I change the time zone in Fabric? [duplicate]

北战南征 提交于 2020-01-02 00:54:20
问题 This question already has an answer here : How do you set the time zone in Crashlytics? (1 answer) Closed 2 years ago . Can I change the time zone in Fabric? Fabric got the UTC, but we located in other time zone. So when we checked the data in Fabric, we would be confused by the time. UTC time zone 回答1: Ah, currently I think there is not a way to change the timezone cause all the way to change timezone are based on the UTC. 来源: https://stackoverflow.com/questions/43338481/how-can-i-change-the

Android Twitter Login button not working

北战南征 提交于 2019-12-23 15:16:47
问题 I'm writing an application that includes a sign in with twitter button. The button is okay. It shows on the screen when I click I give auth but I cant save the token and secret to a string variable. I mean it is empty always. The code at the below has been created by fabric.io automatically and I have added some stuff in it but it is not working. There is no error it just doesn't change the variable token and secret. I have tried this by an TextView object that changes in the success case and

Fabric.io usertimeline loaded event

自作多情 提交于 2019-12-11 15:03:20
问题 I'm using a Twitter feed from Fabric.io,. To set up, I'm using this method: final UserTimeline userTimeline = new UserTimeline.Builder() .screenName(screenname) .build(); final TweetTimelineListAdapter adapter = new TweetTimelineListAdapter(mContext, userTimeline); listViewTweets.setAdapter(adapter); My goal is to show a loading indicator until the feed is loaded, thus shows in the view. How do I do this? 回答1: Before listViewTweets.setAdapter(adapter); insert: listviewo.setEmptyView

Crashlytics not transmitting crash event to Fabric.io (Debug mode only?)

一笑奈何 提交于 2019-12-11 07:43:46
问题 I'm having a problem similar to [xCode 9.3 and Firebase Crashlytics not working. I am able to force a crash in the debug version of the main app and the crash appears in the console on Fabric.io. I have also made a way (using an "Easter egg") to force a crash in the framework code. I have tried three different approaches. The first two are attempts to simulate a "real" crash originating in the framework code itself. The third uses a "bogus" callback to the main app. Note that in the code