Skip to content

Instantly share code, notes, and snippets.

@Tomoki-n
Last active August 29, 2015 14:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Tomoki-n/fa567cf413e1c5b8a16d to your computer and use it in GitHub Desktop.
Save Tomoki-n/fa567cf413e1c5b8a16d to your computer and use it in GitHub Desktop.
【iOS】新しくなったCrashlyticsの使い方 Fabric版(SDK導入編) ref: http://qiita.com/tomoki-n/items/29e435507a1879a95bd1
#import "AppDelegate.h"
#import <Fabric/Fabric.h>
#import <Crashlytics/Crashlytics.h>
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary*)launchOptions
{
[Fabric with:@[CrashlyticsKit]];
return YES;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment