Skip to content

Commit ec56443

Browse files
authored
Merge pull request #92 from AppsFlyerSDK/releases/6.x.x/6.2.x/6.2.62
Releases/6.x.x/6.2.x/6.2.62
2 parents 3b1cb6d + ebb34eb commit ec56443

File tree

9 files changed

+7
-7
lines changed

9 files changed

+7
-7
lines changed

Assets/AppsFlyer/AppsFlyer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace AppsFlyerSDK
77
public class AppsFlyer : MonoBehaviour
88
{
99

10-
public static readonly string kAppsFlyerPluginVersion = "6.2.61";
10+
public static readonly string kAppsFlyerPluginVersion = "6.2.62";
1111
public static string CallBackObjectName = null;
1212
private static EventHandler onRequestResponse;
1313
private static EventHandler onInAppResponse;

Assets/AppsFlyer/Plugins/iOS/AppsFlyeriOSWrapper.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ const void _setResolveDeepLinkURLs (int length, const char **resolveDeepLinkURLs
9696

9797
const void _setOneLinkCustomDomains (int length, const char **oneLinkCustomDomains) {
9898
if(length > 0 && oneLinkCustomDomains) {
99-
[[AppsFlyerLib shared] oneLinkCustomDomains:NSArrayFromCArray(length, oneLinkCustomDomains)];
99+
[[AppsFlyerLib shared] setOneLinkCustomDomains:NSArrayFromCArray(length, oneLinkCustomDomains)];
100100
}
101101
}
102102

android-unity-wrapper/unitywrapper/src/main/java/com/appsflyer/unity/AppsFlyerAndroidWrapper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public static void initSDK(String devKey, String objectName) {
4646
devkey = devKey;
4747

4848
AppsFlyerLib.getInstance().init(devKey, conversionListener, UnityPlayer.currentActivity);
49-
AppsFlyerLib.getInstance().setExtension("unity_android_6.2.6");
49+
AppsFlyerLib.getInstance().setExtension("unity_android_6.2.62");
5050
}
5151

5252
public static void startTracking(final boolean shouldCallback, final String objectName) {
-369 KB
Binary file not shown.
369 KB
Binary file not shown.

deploy/build_unity_package.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ echo "Start Build for appsflyer-unity-plugin.unitypackage"
44

55
DEPLOY_PATH=outputs
66
UNITY_PATH="/Applications/Unity/Unity.app/Contents/MacOS/Unity"
7-
PACKAGE_NAME="appsflyer-unity-plugin-6.2.61.unitypackage"
7+
PACKAGE_NAME="appsflyer-unity-plugin-6.2.62.unitypackage"
88
mkdir -p $DEPLOY_PATH
99

1010

@@ -20,7 +20,7 @@ mkdir -p $DEPLOY_PATH
2020
Assets \
2121
$PWD/$DEPLOY_PATH/$PACKAGE_NAME \
2222
-quit \
23-
&& echo "package exported successfully to outputs/appsflyer-unity-plugin-6.2.61.unitypackage" \
23+
&& echo "package exported successfully to outputs/appsflyer-unity-plugin-6.2.62.unitypackage" \
2424
|| echo "Failed to export package. See create_unity_core.log for more info."
2525

2626

deploy/strict_mode_build_package.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ echo "Start Build for appsflyer-unity-plugin.unitypackage. Strict Mode."
55

66
DEPLOY_PATH=outputs
77
UNITY_PATH="/Applications/Unity/Unity.app/Contents/MacOS/Unity"
8-
PACKAGE_NAME="appsflyer-unity-plugin-strict-mode-6.2.61.unitypackage"
8+
PACKAGE_NAME="appsflyer-unity-plugin-strict-mode-6.2.62.unitypackage"
99
mkdir -p $DEPLOY_PATH
1010

1111
echo "Changing AppsFlyerFramework to Strict Mode"
@@ -25,7 +25,7 @@ echo "Changing AppsFlyerFramework to Strict Mode. Done."
2525
Assets \
2626
$PWD/$DEPLOY_PATH/$PACKAGE_NAME \
2727
-quit \
28-
&& echo "package exported successfully to outputs/appsflyer-unity-plugin-strict-mode-6.2.61.unitypackage" \
28+
&& echo "package exported successfully to outputs/appsflyer-unity-plugin-strict-mode-6.2.62.unitypackage" \
2929
|| echo "Failed to export package. See create_unity_core.log for more info."
3030

3131

Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)