mirror of
https://github.com/purplecabbage/phonegap-plugins.git
synced 2026-01-13 16:38:08 -05:00
20 lines
578 B
Objective-C
20 lines
578 B
Objective-C
//
|
|
// AppBladePlugin.h
|
|
// HelloWorld
|
|
//
|
|
// Created by Michele Titolo on 5/14/12.
|
|
// Copyright (c) 2012 AppBlade. All rights reserved.
|
|
//
|
|
|
|
#import <Cordova/CDVPlugin.h>
|
|
|
|
@interface AppBladePlugin : CDVPlugin
|
|
|
|
- (void)setupAppBlade:(NSMutableArray*)args withDict:(NSMutableDictionary*)options;
|
|
|
|
- (void)catchAndReportCrashes:(NSMutableArray*)args withDict:(NSMutableDictionary*)options;
|
|
- (void)allowFeedbackReporting:(NSMutableArray*)args withDict:(NSMutableDictionary*)options;
|
|
- (void)checkAuthentication:(NSMutableArray*)args withDict:(NSMutableDictionary*)options;
|
|
|
|
@end
|