hypery2k/nativescript-fabric

View on GitHub
src/fabric.appdelegate.ios.ts

Summary

Maintainability
A
0 mins
Test Coverage
declare var Fabric: any,
  Crashlytics: any,
  Answers: any;
// TODO: Extend existing delegate if exists
export class FabricAppDelegate extends UIResponder implements UIApplicationDelegate {

  public static ObjCProtocols = [UIApplicationDelegate];

  public applicationDidFinishLaunchingWithOptions(application: UIApplication, launchOptions: NSDictionary): boolean {
    Fabric.with([Crashlytics, Answers]);
    return true;
  }

}