Files
phonegap-plugins/iOS/Testflight/CDVTestFlight.h
2012-05-09 16:17:22 -04:00

30 lines
877 B
Objective-C
Executable File

//
// PGTestFlight.h
//
// Created by Shazron Abdullah on 11-09-13.
// Copyright 2011 Nitobi Software Inc. All rights reserved.
//
// Updated by Will Froelich Apr-10-2012
//
#ifdef CORDOVA_FRAMEWORK
#import <Cordova/CDVPlugin.h>
#else
#import "CDVPlugin.h"
#endif
@interface CDVTestFlight : CDVPlugin
- (void)addCustomEnvironmentInformation:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options;
- (void)takeOff:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options;
- (void)setOptions:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options;
- (void)passCheckpoint:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options;
- (void)openFeedbackView:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options;
- (void)setDeviceIdentifier:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options;
@end