diff --git a/Assets/AppsFlyer/AppsFlyer.cs b/Assets/AppsFlyer/AppsFlyer.cs index b780d92..f2f3678 100644 --- a/Assets/AppsFlyer/AppsFlyer.cs +++ b/Assets/AppsFlyer/AppsFlyer.cs @@ -6,7 +6,7 @@ namespace AppsFlyerSDK { public class AppsFlyer : MonoBehaviour { - public static readonly string kAppsFlyerPluginVersion = "6.17.5"; + public static readonly string kAppsFlyerPluginVersion = "6.17.7"; public static string CallBackObjectName = null; private static EventHandler onRequestResponse; private static EventHandler onInAppResponse; diff --git a/Assets/AppsFlyer/Editor/AppsFlyerDependencies.xml b/Assets/AppsFlyer/Editor/AppsFlyerDependencies.xml index f94cf6f..a2b8e95 100644 --- a/Assets/AppsFlyer/Editor/AppsFlyerDependencies.xml +++ b/Assets/AppsFlyer/Editor/AppsFlyerDependencies.xml @@ -3,14 +3,14 @@ - + - + - - + + diff --git a/Assets/AppsFlyer/Plugins/iOS/AppsFlyeriOSWrapper.mm b/Assets/AppsFlyer/Plugins/iOS/AppsFlyeriOSWrapper.mm index 1be1ce2..89a23e6 100644 --- a/Assets/AppsFlyer/Plugins/iOS/AppsFlyeriOSWrapper.mm +++ b/Assets/AppsFlyer/Plugins/iOS/AppsFlyeriOSWrapper.mm @@ -33,7 +33,7 @@ static void unityCallBack(NSString* objectName, const char* method, const char* const void _startSDK(bool shouldCallback, const char* objectName) { [[AppsFlyerLib shared] setPluginInfoWith: AFSDKPluginUnity - pluginVersion:@"6.17.5" + pluginVersion:@"6.17.7" additionalParams:nil]; startRequestObjectName = stringFromChar(objectName); AppsFlyeriOSWarpper.didCallStart = YES; diff --git a/Assets/AppsFlyer/package.json b/Assets/AppsFlyer/package.json index 1443643..1851d0c 100644 --- a/Assets/AppsFlyer/package.json +++ b/Assets/AppsFlyer/package.json @@ -2,7 +2,7 @@ "name": "appsflyer-unity-plugin", "displayName": "AppsFlyer", "description": "AppsFlyer Unity plugin", - "version": "6.17.5", + "version": "6.17.7", "unity": "2019.4", "license": "MIT" } diff --git a/CHANGELOG.md b/CHANGELOG.md index b801068..9230c53 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,9 @@ # Versions +## v6.17.7 +* Update iOS SDK version - 6.17.7 +* Update iOS Purchase Connector version - 6.17.7 +* Update Android Purchase Connector version - 2.2.0 + ## v6.17.5 * Update iOS SDK version - 6.17.5 * Update iOS Purchase Connector version - 6.17.5 diff --git a/README.md b/README.md index 27ff429..23951ef 100755 --- a/README.md +++ b/README.md @@ -17,9 +17,9 @@ ### This plugin is built for - Android AppsFlyer SDK v6.17.3 -- Android Purchase Connector 2.1.0 -- iOS AppsFlyer SDK v6.17.5 -- iOS Purchase Connector 6.17.5 +- Android Purchase Connector 2.2.0 +- iOS AppsFlyer SDK v6.17.7 +- iOS Purchase Connector 6.17.7 --- ### AD_ID permission for Android diff --git a/android-unity-wrapper/gradle.properties b/android-unity-wrapper/gradle.properties index 171b1f5..8512502 100644 --- a/android-unity-wrapper/gradle.properties +++ b/android-unity-wrapper/gradle.properties @@ -20,8 +20,8 @@ android.enableJetifier=true GROUP=com.appsflyer -VERSION_CODE=52 -VERSION_NAME=6.17.3 +VERSION_CODE=53 +VERSION_NAME=6.17.7 POM_ARTIFACT_ID=unity-wrapper POM_PACKAGING=aar @@ -52,3 +52,4 @@ POM_DEVELOPER_EMAIL1=maxim@appsflyer.com POM_DEVELOPER_ID2=Jonathan POM_DEVELOPER_NAME2=Jonathan Wesfield POM_DEVELOPER_EMAIL2=jonathan.wesfield@appsflyer.com + diff --git a/android-unity-wrapper/unitywrapper/build.gradle b/android-unity-wrapper/unitywrapper/build.gradle index d38a78c..38efef7 100644 --- a/android-unity-wrapper/unitywrapper/build.gradle +++ b/android-unity-wrapper/unitywrapper/build.gradle @@ -30,8 +30,8 @@ dependencies { compileOnly fileTree(dir: 'libs', include: ['*.jar']) compileOnly 'androidx.appcompat:appcompat:1.1.0' compileOnly 'com.appsflyer:af-android-sdk:6.17.3' - compileOnly 'com.appsflyer:purchase-connector:2.1.0' - compileOnly 'com.android.billingclient:billing:5.2.0' + compileOnly 'com.appsflyer:purchase-connector:2.2.0' + compileOnly 'com.android.billingclient:billing:8.0.0' } apply from: file('publish.gradle') diff --git a/android-unity-wrapper/unitywrapper/src/main/java/com/appsflyer/unity/AppsFlyerAndroidWrapper.java b/android-unity-wrapper/unitywrapper/src/main/java/com/appsflyer/unity/AppsFlyerAndroidWrapper.java index c27052d..ea3f96e 100644 --- a/android-unity-wrapper/unitywrapper/src/main/java/com/appsflyer/unity/AppsFlyerAndroidWrapper.java +++ b/android-unity-wrapper/unitywrapper/src/main/java/com/appsflyer/unity/AppsFlyerAndroidWrapper.java @@ -62,7 +62,7 @@ public class AppsFlyerAndroidWrapper { private static final String IN_APP_RESPONSE_CALLBACK = "inAppResponseReceived"; private static final String VALIDATION_CALLBACK = "didReceivePurchaseRevenueValidationInfo"; private static final String ERROR_CALLBACK = "didReceivePurchaseRevenueError"; - private static final String PLUGIN_VERSION = "6.17.3"; + private static final String PLUGIN_VERSION = "6.17.7"; private static final long DDL_TIMEOUT_DEFAULT = 3000; private static AppsFlyerConversionListener conversionListener; diff --git a/appsflyer-unity-plugin-6.17.5.unitypackage b/appsflyer-unity-plugin-6.17.5.unitypackage deleted file mode 100644 index ec17f64..0000000 Binary files a/appsflyer-unity-plugin-6.17.5.unitypackage and /dev/null differ diff --git a/appsflyer-unity-plugin-6.17.7.unitypackage b/appsflyer-unity-plugin-6.17.7.unitypackage new file mode 100644 index 0000000..3b6b509 Binary files /dev/null and b/appsflyer-unity-plugin-6.17.7.unitypackage differ diff --git a/deploy/build_unity_package.sh b/deploy/build_unity_package.sh index 1e872f5..1c93ded 100644 --- a/deploy/build_unity_package.sh +++ b/deploy/build_unity_package.sh @@ -4,7 +4,7 @@ echo "Start Build for appsflyer-unity-plugin.unitypackage" DEPLOY_PATH=outputs UNITY_PATH="/Applications/Unity/Unity.app/Contents/MacOS/Unity" -PACKAGE_NAME="appsflyer-unity-plugin-6.17.5.unitypackage" +PACKAGE_NAME="appsflyer-unity-plugin-6.17.7.unitypackage" mkdir -p $DEPLOY_PATH #move external dependency manager @@ -23,7 +23,7 @@ mv external-dependency-manager-1.2.183.unitypackage .. Assets \ $PWD/$DEPLOY_PATH/$PACKAGE_NAME \ -quit \ -&& echo "package exported successfully to outputs/appsflyer-unity-plugin-6.17.5.unitypackage" \ +&& echo "package exported successfully to outputs/appsflyer-unity-plugin-6.17.7.unitypackage" \ || echo "Failed to export package. See create_unity_core.log for more info." diff --git a/deploy/strict_mode_build_package.sh b/deploy/strict_mode_build_package.sh index 702e42f..bccee71 100644 --- a/deploy/strict_mode_build_package.sh +++ b/deploy/strict_mode_build_package.sh @@ -5,7 +5,7 @@ echo "Start Build for appsflyer-unity-plugin.unitypackage. Strict Mode." DEPLOY_PATH=outputs UNITY_PATH="/Applications/Unity/Unity.app/Contents/MacOS/Unity" - PACKAGE_NAME="appsflyer-unity-plugin-strict-mode-6.17.5.unitypackage" + PACKAGE_NAME="appsflyer-unity-plugin-strict-mode-6.17.7.unitypackage" mkdir -p $DEPLOY_PATH #move external dependency manager @@ -41,7 +41,7 @@ echo "Commenting out functions. Done." Assets \ $PWD/$DEPLOY_PATH/$PACKAGE_NAME \ -quit \ - && echo "package exported successfully to outputs/appsflyer-unity-plugin-strict-mode-6.17.5.unitypackage" \ + && echo "package exported successfully to outputs/appsflyer-unity-plugin-strict-mode-6.17.7.unitypackage" \ || echo "Failed to export package. See create_unity_core.log for more info." diff --git a/strict-mode-sdk/appsflyer-unity-plugin-strict-mode-6.17.5.unitypackage b/strict-mode-sdk/appsflyer-unity-plugin-strict-mode-6.17.5.unitypackage deleted file mode 100644 index be81652..0000000 Binary files a/strict-mode-sdk/appsflyer-unity-plugin-strict-mode-6.17.5.unitypackage and /dev/null differ diff --git a/strict-mode-sdk/appsflyer-unity-plugin-strict-mode-6.17.7.unitypackage b/strict-mode-sdk/appsflyer-unity-plugin-strict-mode-6.17.7.unitypackage new file mode 100644 index 0000000..9c81922 Binary files /dev/null and b/strict-mode-sdk/appsflyer-unity-plugin-strict-mode-6.17.7.unitypackage differ