Skip to content

Commit

Permalink
Release 2.32.0 with iOS SDK 1.26.1 and Android SDK 1.11.16
Browse files Browse the repository at this point in the history
  • Loading branch information
vijaysharm committed Sep 15, 2020
1 parent a818c1e commit 701cdc6
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 3 deletions.
Binary file modified Plugins/Android/testfairy-android-sdk.aar
Binary file not shown.
2 changes: 1 addition & 1 deletion Plugins/iOS/TestFairy.framework.dSYM/Contents/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleShortVersionString</key>
<string>1.26.0</string>
<string>1.26.1</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
Expand Down
Binary file not shown.
18 changes: 16 additions & 2 deletions Plugins/iOS/TestFairy.framework/Headers/TestFairy.h
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,16 @@
*/
+ (void)addEvent:(NSString *)name;

/**
* Adds a new user interaction to the timeline. Can be used by non-native UI frameworks to report
* user interactions such as clicks, long-clicks and double clicks.
*
* @param kind Kind of interaction to add [button pressed = 1, button long pressed = 8, button double tapped = 9]
* @param label Text content of the clicked view
* @param info (Optional) Extra meta data, accepted keys are "accessibilityLabel", "accessibilityIdentifier", "accessibilityHint" and "className"
*/
+ (void)addUserInteraction:(int)kind label:(NSString *)label info:(NSDictionary *)info;

/**
* Sets a correlation identifier for this session. This value can
* be looked up via web dashboard. For example, setting correlation
Expand Down Expand Up @@ -279,11 +289,15 @@
+ (NSString *)sessionUrl;

/**
* Takes a screenshot.
*
* Takes a screenshot and sends it to TestFairy
*/
+ (void)takeScreenshot;

/**
* Takes a screenshot. Can return nil.
*/
+ (void)takeScreenshot:(void(^)(UIImage *))callback;

/**
* Adds a screenshot to the current moment in session.
* Overrides the current screen recording system
Expand Down
Binary file modified Plugins/iOS/TestFairy.framework/Info.plist
Binary file not shown.
Binary file modified Plugins/iOS/TestFairy.framework/TestFairy
Binary file not shown.

0 comments on commit 701cdc6

Please sign in to comment.