Skip to content

Commit

Permalink
Updated 2.6.0 to iOS SDK 1.12.2 and Android SDK 1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
vijaysharm committed Feb 19, 2018
1 parent 4b0c864 commit 3e72304
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
Binary file modified binding/TestFairy.Android/Jars/testfairy-sdk.aar
Binary file not shown.
17 changes: 16 additions & 1 deletion binding/TestFairy.iOS/TestFairy.h
Expand Up @@ -17,6 +17,10 @@
*
* @param appToken Your key as given to you in your TestFairy account
* @param options A dictionary of options controlling the current session
* Options include
* - metrics: comma separated string of default metric options such as
* "cpu,memory,network-requests,shake,video,logs"
* - enableCrashReporter: @YES / @NO to enable crash handling. Default is @YES
*/
+ (void)begin:(NSString *)appToken withOptions:(NSDictionary *)options;

Expand Down Expand Up @@ -169,7 +173,7 @@
/**
* Records a session level attribute which can be looked up via web dashboard.
*
* @param name The name of the attribute. Cannot be nil.
* @param key The name of the attribute. Cannot be nil.
* @param value The value associated with the attribute. Cannot be nil.
* @return YES if successfully set attribute value, NO if failed with error in log.
*
Expand All @@ -192,6 +196,17 @@
*/

+ (void)log:(NSString *)message;

/**
* Attach a file to the session. A maximum of 5 files may be attached. Each file cannot be more
* than 15 mb in size. In order to see if the file successfully uploads or fails, please view
* the logs.
*
* @param file path to file on disk.
*
*/
+ (void)attachFile:(NSURL *)file;

@end

#if __cplusplus
Expand Down
Binary file modified binding/TestFairy.iOS/libTestFairy.a
Binary file not shown.

0 comments on commit 3e72304

Please sign in to comment.