Skip to content

Commit

Permalink
Release 2.60.0 with iOS SDK 1.29.9 and Android SDK 1.12.27
Browse files Browse the repository at this point in the history
  • Loading branch information
vijaysharm committed May 17, 2022
1 parent e40061f commit d2b631c
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ install:
- appc ti config android.sdkPath $ANDROID_HOME
- appc ti config android.ndkPath ${PWD}/android-ndk-r17c
script:
- ANDROID_SDK_VERSION=1.12.18
- IOS_VERSION=1.29.5
- ANDROID_SDK_VERSION=1.12.27
- IOS_VERSION=1.29.9
- TITANIUM_VERSION=${TRAVIS_TAG:-2.26.0}
- echo "Creating ti.testfairy version ${TITANIUM_VERSION}"
- 'sed -i "" "s/^version:.*/version: ${TITANIUM_VERSION}/g" android/manifest'
Expand Down
Binary file modified android/lib/testfairy-sdk.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion android/manifest
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# this is your module manifest and used by Titanium
# during compilation, packaging, distribution, etc.
#
version:2.54.0
version:2.60.0
apiversion: 4
architectures: arm64-v8a armeabi-v7a x86
description: This is the official TestFairy Titanium Module for Android, providing support for the TestFairy SDK.
Expand Down
14 changes: 10 additions & 4 deletions ios/TestFairySDK/TestFairy.h
Original file line number Diff line number Diff line change
Expand Up @@ -237,10 +237,6 @@ typedef TestFairyFeedbackContent * (^TestFairyFeedbackInterceptor)(TestFairyFeed
*
* @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 @@ -570,6 +566,16 @@ typedef TestFairyFeedbackContent * (^TestFairyFeedbackInterceptor)(TestFairyFeed
*/
+ (void)disableMetric:(NSString *)metric;

/**
* Enables recording of logs regardless of build settings. Must be called before begin.
*/
+ (void)enableLogs;

/**
* Disables recording of logs regardless of build settings. Must be called before begin.
*/
+ (void)disableLogs;

/**
* Enables the ability to capture video recording regardless of build settings.
* Valid values for policy include "always" and "wifi"
Expand Down
Binary file modified ios/TestFairySDK/libTestFairy.a
Binary file not shown.
2 changes: 1 addition & 1 deletion ios/manifest
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# this is your module manifest and used by Titanium
# during compilation, packaging, distribution, etc.
#
version:2.54.0
version:2.60.0
apiversion: 2
architectures: armv7 arm64 i386 x86_64
description: This is the official TestFairy Titanium Module for iOS, providing support for the TestFairy SDK.
Expand Down

0 comments on commit d2b631c

Please sign in to comment.