diff --git a/Plugins/Android/testfairy-sdk.jar b/Plugins/Android/testfairy-sdk.jar index 1217e22..c1e4f63 100644 Binary files a/Plugins/Android/testfairy-sdk.jar and b/Plugins/Android/testfairy-sdk.jar differ diff --git a/Plugins/iOS/TestFairy.h b/Plugins/iOS/TestFairy.h index 0f5d24c..cd2aba8 100644 --- a/Plugins/iOS/TestFairy.h +++ b/Plugins/iOS/TestFairy.h @@ -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 @@ -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 @@ -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"] = @"" + * + * @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 *, NSError*))callaback; + @end #if __cplusplus diff --git a/Plugins/iOS/libTestFairy.a b/Plugins/iOS/libTestFairy.a index 1eba9d5..715fe51 100644 Binary files a/Plugins/iOS/libTestFairy.a and b/Plugins/iOS/libTestFairy.a differ