summary refs log tree commit diff stats
path: root/TestFlight.h
diff options
context:
space:
mode:
Diffstat (limited to 'TestFlight.h')
-rw-r--r--TestFlight.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/TestFlight.h b/TestFlight.h new file mode 100644 index 0000000..cd98c52 --- /dev/null +++ b/TestFlight.h
@@ -0,0 +1,35 @@
1//
2// TestFlight.h
3// libTestFlight
4//
5// Created by Colin Humber on 8/25/10.
6// Copyright 2010 23 Divide Apps. All rights reserved.
7
8#import <Foundation/Foundation.h>
9
10@interface TestFlight : NSObject {
11
12}
13
14/**
15 Add custom environment information
16 If you want to track a user name from your application you can add it here
17 */
18+ (void)addCustomEnvironmentInformation:(NSString *)information forKey:(NSString*)key;
19
20/**
21 Starts a TestFlight session
22 */
23+ (void)takeOff:(NSString *)teamToken;
24
25/**
26 Track when a user has passed a checkpoint after the flight has taken off. Eg. passed level 1, posted high score
27 */
28+ (void)passCheckpoint:(NSString *)checkpointName;
29
30/**
31 Opens a feeback window that is not attached to a checkpoint
32 */
33+ (void)openFeedbackView;
34
35@end