Skip to content

Commit bc5806d

Browse files
authored
Merge pull request #61 from AppsFlyerSDK/releases/6.x.x/6.2.x/6.2.2
6.2.2
2 parents 193f0dc + e6d8781 commit bc5806d

12 files changed

+18
-13
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.0";
10+
public static readonly string kAppsFlyerPluginVersion = "6.2.2";
1111
public static string CallBackObjectName = null;
1212
private static EventHandler onRequestResponse;
1313
private static EventHandler onInAppResponse;

Assets/AppsFlyer/Editor/AppsFlyerDependencies.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
<dependencies>
33

44
<androidPackages>
5-
<androidPackage spec="com.appsflyer:af-android-sdk:6.1.4">
5+
<androidPackage spec="com.appsflyer:af-android-sdk:6.2.0">
66
</androidPackage>
7-
<androidPackage spec="com.appsflyer:unity-wrapper:6.1.5">
7+
<androidPackage spec="com.appsflyer:unity-wrapper:6.2.0">
88
</androidPackage>
99
<androidPackage spec="com.android.installreferrer:installreferrer:2.1">
1010
</androidPackage>
1111
</androidPackages>
1212

1313
<iosPods>
14-
<iosPod name="AppsFlyerFramework" version="6.2.0" minTargetSdk="8.0">
14+
<iosPod name="AppsFlyerFramework" version="6.2.2" minTargetSdk="8.0">
1515
</iosPod>
1616
</iosPods>
1717

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Versions
22

3+
## v6.2.2
4+
5+
* RD-54266 - iOS SDK Version - 6.2.2
6+
* RD-54266 - Android SDK Version - 6.2.0
7+
38
## v6.2.0
49

510
* RD-55161 - Fixed don't call start before startSDK() (iOS)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424

2525
### <a id="plugin-build-for"> This plugin is built for
2626

27-
- Android AppsFlyer SDK **v6.1.4**
28-
- iOS AppsFlyer SDK **v6.2.0**
27+
- Android AppsFlyer SDK **v6.2.0**
28+
- iOS AppsFlyer SDK **v6.2.2**
2929

3030

3131

android-unity-wrapper/gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ android.enableJetifier=true
2020

2121
GROUP=com.appsflyer
2222

23-
VERSION_CODE=10
24-
VERSION_NAME=6.1.5
23+
VERSION_CODE=11
24+
VERSION_NAME=6.2.0
2525

2626
POM_ARTIFACT_ID=unity-wrapper
2727
POM_PACKAGING=aar

android-unity-wrapper/unitywrapper/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ repositories {
3131
dependencies {
3232
compileOnly fileTree(dir: 'libs', include: ['*.jar'])
3333
compileOnly 'androidx.appcompat:appcompat:1.1.0'
34-
compileOnly 'com.appsflyer:af-android-sdk:6.1.4'
34+
compileOnly 'com.appsflyer:af-android-sdk:6.2.0'
3535

3636
}
3737

-372 KB
Binary file not shown.
372 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.0.unitypackage"
7+
PACKAGE_NAME="appsflyer-unity-plugin-6.2.2.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.0.unitypackage" \
23+
&& echo "package exported successfully to outputs/appsflyer-unity-plugin-6.2.2.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.0.unitypackage"
8+
PACKAGE_NAME="appsflyer-unity-plugin-strict-mode-6.2.2.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.0.unitypackage" \
28+
&& echo "package exported successfully to outputs/appsflyer-unity-plugin-strict-mode-6.2.2.unitypackage" \
2929
|| echo "Failed to export package. See create_unity_core.log for more info."
3030

3131

0 commit comments

Comments
 (0)