Menu
  • HOME
  • TAGS

Proper way to initialize Fabric.io for debugging/release

android,crashlytics,fabric.io

With the new 2.3.+ version you should use somenthing like this: Fabric.with(this, new Crashlytics.Builder() .core(new CrashlyticsCore.Builder() .disabled(BuildConfig.DEBUG) .build()) .build()); ...

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

ios,twitter,parse.com,http-status-code-404,fabric.io

It turns out that under settings>twitter log in, my application had been switched off in there and therefore it kept throwing up that message. It really should have the capacity to notify the user when such an instance occurs.

Automatically update iOS app for beta testers?

crashlytics,hockeyapp,fabric.io

On HockeyApp, when integrating the SDK, the app will automatically notify the user with an alert if an update is available and the user can then update from within the app. In addition you can set a new version as being "mandatory" in the web interface, then the user will...

TwitterKit does not compile with Xcode 6.3

ios,twitter,fabric.io

This was a simple fix. Just do as the error state, turn on dSYM generation for your debug build. Change your Build Settings from this: To this: Then choose Build again. It should now compile and run....

Fabric.io implementation (AppDelegate)

ios,objective-c,iphone,fabric.io

Assuming you used the build script to setup Fabric, it will have placed the appropriate consumerKey and consumerSecret in your project's info.plist. You can initialize Fabric with this method: Swift Fabric.with(Twitter(), Crashlytics()) // Add whichever Kits you are using ObjectiveC [Fabric with:@[[Twitter sharedInstance]]] // Add whichever Kits you are using...

Fabric.io usertimeline loaded event

android,fabric-twitter,fabric.io

Before listViewTweets.setAdapter(adapter); insert: listviewo.setEmptyView(findViewById(R.id.loading)); loading is a ProgressBar put it inside your XML where you have the ListView: <ProgressBar android:id="@+id/loading" android:layout_width="wrap_content" android:layout_height="match_parent" android:indeterminateDrawable="@anim/loading_rotation" android:layout_centerHorizontal="true" android:layout_centerVertical="true" android:visibility="gone" /> by this: android:indeterminateDrawable="@anim/loading_rotation" i created...