nativescript-fabric
Version: 
A NativeScript Plugin for fabric.io
16 lines • 673 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var FabricAppDelegate = (function (_super) {
    __extends(FabricAppDelegate, _super);
    function FabricAppDelegate() {
        return _super !== null && _super.apply(this, arguments) || this;
    }
    FabricAppDelegate.prototype.applicationDidFinishLaunchingWithOptions = function (application, launchOptions) {
        Fabric.with([Crashlytics, Answers]);
        return true;
    };
    FabricAppDelegate.ObjCProtocols = [UIApplicationDelegate];
    return FabricAppDelegate;
}(UIResponder));
exports.FabricAppDelegate = FabricAppDelegate;
//# sourceMappingURL=fabric.appdelegate.ios.js.map