Questions tagged [fabric.io]

Fabric developed by Twitter is a modular mobile platform that makes it easy for developers to build great apps.

The Fabric platform is made of three modular kits that address some of the most common and pervasive challenges that all app developers face: stability, distribution, revenue and identity. It combines the services of Crashlytics, MoPub, Twitter and others to help you build more stable apps, generate revenue through the world’s largest mobile ad exchange and enable you to tap into Twitter’s sign-in systems and rich streams of real-time content for greater distribution and simpler identity.

(source)

97 questions
346
votes
21 answers

API 'variant.getExternalNativeBuildTasks()' is obsolete and has been replaced with 'variant.getExternalNativeBuildProviders()

Using Android Studio 3.3 Canary 11 with the gradle plugin version 3.3.0-alpha11. It throws the following error when trying to sync gradle WARNING: API 'variant.getExternalNativeBuildTasks()' is obsolete and has been replaced with…
23
votes
5 answers

TwitterKit does not compile with Xcode 6.3

I added TwitterKit from Fabric to an app under Xcode 6.3. The app would compile before I added TwitterKit's Run Script build phase step but once I added TwitterKit it failed with this error during Debug builds: 2015-02-23 11:22:32.382…
Mark Thistle
  • 1,871
  • 14
  • 21
22
votes
3 answers

Error:Execution failed for task ':app:fabricGenerateResourcesDebug'. > Crashlytics Developer Tools error

Trying to add Twitter Fabric SDK. I have added all dependencies suggested by Twitter. Modified my build.gradle: buildscript { repositories { jcenter() maven { url 'https://maven.fabric.io/repo' } } dependencies { …
kj007
  • 6,073
  • 4
  • 29
  • 47
15
votes
3 answers

Unknown bug "Thread starting during runtime shutdown"

I'm using Fabric to report crash for my app. I have received those report for a very long time and the number of crashes keep increasing. Fatal Exception: java.lang.InternalError: Thread starting during runtime shutdown at…
Huy
  • 179
  • 1
  • 1
  • 9
15
votes
4 answers

issue with uploading dSYM to crashlytics

To upload dSYM to crashlytics, I have following setup but not able to get dSYM uploaded. In my target -> build phases -> Run Script ./Fabric.framework/run KEY SECRET echo "working" ./Crashlytics.framework/run KEY SECRET In Report…
BaSha
  • 2,356
  • 3
  • 21
  • 38
13
votes
1 answer

Why can't I send data to fabric from Iran?

It's been about a week or so that our clients can't send data to fabric in Iran, I wanted to know if this ban was made by the fabric and why now?
Moh Mah
  • 2,005
  • 20
  • 29
13
votes
1 answer

How can I change the time zone in Fabric?

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
Eric Lee
  • 133
  • 1
  • 7
12
votes
3 answers

No signature of method: com.crashlytics.tools.gradle.CrashlyticsPlugin On Mac

Below error while gradle sync Failed in Mac. CONFIGURE FAILED in 3s ERROR: No signature of method: com.crashlytics.tools.gradle.CrashlyticsPlugin.findObfuscationTransformTask() is applicable for argument types: (java.lang.String) values:…
11
votes
1 answer

Filter data over a period of time in Fabric.io

I have been using Fabric.io on my iOS app for 2 months. It's an e-commerce app so I'm using custom events for monitoring Product search and Purchases. What I noticed it's that though the tables in "Answers" get filled up with data it's not possible…
Claus
  • 5,662
  • 10
  • 77
  • 118
10
votes
1 answer

How to migrate from Fabric Crashlytics to Firebase Crashlytics?

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…
Ilia Kurtov
  • 999
  • 1
  • 12
  • 18
9
votes
2 answers

Fabric/Crashlytics Android adding string resource for Apikey causes Crashlytics Developer Tools Error

In my android app, I added a the following string resource in the AndroidManifest.xml and in strings.xml
Farhaan
  • 93
  • 8
9
votes
1 answer

Cordova based project to Fabric

I am searching for "Crash Analytics and Monitoring tools" for my Cordova (Ionic) based project. There is a cordova-fabric-io-plugin on Github https://github.com/engincancan/cordova-fabric-io-plugin. I did changes according to instructions and also…
8
votes
3 answers

Fabric.io implementation (AppDelegate)

I'm trying to implement Fabric into my app. The problem is, that the app isn't working correctly and I have no idea what code to place in my AppDelegate. I can't find any information on the web what should I implement there. Can anyone give me a…
Nat
  • 12,032
  • 9
  • 56
  • 103
6
votes
3 answers

How can I unblock cdn-cf.fabric.io?

I don't know why but I am occasionally seeing this error after being logged for a while. We couldn't load assets! Please make sure cdn-cf.fabric.io is not blocked and try again. The only way to get out this screen is by cleaning up my cache.…
Victor Hugo Montes
  • 1,270
  • 1
  • 17
  • 28
6
votes
3 answers

Proper way to initialize Fabric.io for debugging/release

Just a quick question about Crashlytics from Fabric.io: To disable it in debug, should we still use: Crashlytics crashlytics = new Crashlytics.Builder().disabled(BuildConfig.DEBUG).build(); Fabric.with(this, crashlytics); Or does Fabric…
TomCB
  • 3,983
  • 9
  • 40
  • 66
1
2 3 4 5 6 7