Skip to content

Commit

Permalink
Updated 2.16.1 to iOS SDK 1.18.0 and Android SDK 1.8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
vijaysharm committed Nov 18, 2018
1 parent a519667 commit d18ae27
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 2 deletions.
Binary file modified Plugins/Android/testfairy-sdk.jar
Binary file not shown.
30 changes: 28 additions & 2 deletions Plugins/iOS/TestFairy.h
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@
* Values for fps must be between 0.1 and 2.0. Value will be rounded to
* the nearest frame.
*/
+ (void)enableVideo:(NSString *)policy quality:(NSString*)quality framesPerSecond:(float)fps;
+ (void)enableVideo:(NSString *)policy quality:(NSString *)quality framesPerSecond:(float)fps;

/**
* Disables the ability to capture video recording. Must be
Expand All @@ -283,7 +283,7 @@
* the build settings will be used. Must be called before
* begin.
*/
+ (void)enableFeedbackForm:(NSString*) method;
+ (void)enableFeedbackForm:(NSString *) method;

/**
* Disables the ability to present users with feedback when
Expand All @@ -302,6 +302,32 @@
*/
+ (void)setMaxSessionLength:(float)seconds;

/**
* Determines whether the "email field" in the Feedback form will be visible or not.
* default is true
*
* @param visible BOOL
*/
+ (void)setFeedbackEmailVisible:(BOOL)visible;

/**
* Query the distribution status of this build. Distribution is not required
* for working with the TestFairy SDK, meaning, you can use the SDK with the App Store.
*
* The distribution status can be either "enabled" or "disabled", and optionally, can have
* an auto-update. This method is useful if you're using TestFairy in your development
* stage and want to know if you expired the distribution of this version in your dashboard.
*
* Possible response keys:
*
* response[@"status"] = @"enabled" or @"disabled"
* response[@"autoUpdateDownloadUrl"] = @"<url to download url>"
*
* @param appToken App token as used with begin()
* @param callback to receive asynchornous response. Response dictionary can be nil
*/
+ (void)getDistributionStatus:(NSString *)appToken callback:(void(^)(NSDictionary<NSString *, NSString *> *, NSError*))callaback;

@end

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

0 comments on commit d18ae27

Please sign in to comment.