Skip to content

Commit

Permalink
Updated to iOS SDK 1.7.8 and Android SDK 1.2.10
Browse files Browse the repository at this point in the history
  • Loading branch information
vijaysharm committed Jun 28, 2016
1 parent 2a1e397 commit b5e2b7e
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 9 deletions.
Binary file modified Plugins/Android/testfairy-sdk.jar
Binary file not shown.
29 changes: 20 additions & 9 deletions Plugins/iOS/TestFairy.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* Change the server endpoint for use with on-premise hosting. Please
* contact support or sales for more information. Must be called before begin
*
* @param serverOverride
* @param serverOverride server address for use with TestFairy
*/
+ (void)setServerEndpoint:(NSString *)serverOverride;

Expand Down Expand Up @@ -149,26 +149,37 @@
/**
* Set the name of the current screen. Useful for single page
* applications which use a single UIViewController.
*
* @param name logic name of current screen
*/
+ (void)setScreenName:(NSString *)name;
@end

/**
* Remote logging, use TFLog as you would use printf. These logs will be sent to the server,
* but will not appear in the console.
*/
#if __cplusplus
extern "C" {
#endif

void TFLog(NSString *format, ...) __attribute__((format(__NSString__, 1, 2)));
void TFLogv(NSString *format, va_list arg_list);
/**
* Remote logging, use TFLog as you would use printf. These logs will be sent to the server,
* but will not appear in the console.
*
* @param format sprintf-like format for the arguments that follow
*/
void TFLog(NSString *format, ...) __attribute__((format(__NSString__, 1, 2)));

/**
* Remote logging, use TFLogv as you would use printfv. These logs will be sent to the server,
* but will not appear in the console.
*
* @param format sprintf-like format for the arguments that follow
* @param arg_list list of arguments
*/
void TFLogv(NSString *format, va_list arg_list);

#if __cplusplus
}
#endif

@end

extern NSString *const TFSDKIdentityTraitNameKey;
extern NSString *const TFSDKIdentityTraitEmailAddressKey;
extern NSString *const TFSDKIdentityTraitBirthdayKey;
Expand Down
Binary file modified Plugins/iOS/libTestFairy.a
Binary file not shown.

0 comments on commit b5e2b7e

Please sign in to comment.