From 80d9478b746056dc76f7ffbfdf98f82b8b052189 Mon Sep 17 00:00:00 2001 From: VeroB0 Date: Sun, 16 Jun 2024 11:46:44 +0300 Subject: [PATCH] v6.14.4 --- Assets/AppsFlyer/AppsFlyer.cs | 2 +- Assets/AppsFlyer/Editor/AppsFlyerDependencies.xml | 6 +++--- Assets/AppsFlyer/Plugins/iOS/AppsFlyeriOSWrapper.mm | 2 +- android-unity-wrapper/gradle.properties | 4 ++-- android-unity-wrapper/unitywrapper/build.gradle | 2 +- .../java/com/appsflyer/unity/AppsFlyerAndroidWrapper.java | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Assets/AppsFlyer/AppsFlyer.cs b/Assets/AppsFlyer/AppsFlyer.cs index 670932a0..68f325a8 100644 --- a/Assets/AppsFlyer/AppsFlyer.cs +++ b/Assets/AppsFlyer/AppsFlyer.cs @@ -7,7 +7,7 @@ namespace AppsFlyerSDK public class AppsFlyer : MonoBehaviour { - public static readonly string kAppsFlyerPluginVersion = "6.14.3"; + public static readonly string kAppsFlyerPluginVersion = "6.14.4"; 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 458e8534..f7ebbb2e 100644 --- a/Assets/AppsFlyer/Editor/AppsFlyerDependencies.xml +++ b/Assets/AppsFlyer/Editor/AppsFlyerDependencies.xml @@ -2,16 +2,16 @@ - + - + - + diff --git a/Assets/AppsFlyer/Plugins/iOS/AppsFlyeriOSWrapper.mm b/Assets/AppsFlyer/Plugins/iOS/AppsFlyeriOSWrapper.mm index 1af34647..95b0f9a8 100644 --- a/Assets/AppsFlyer/Plugins/iOS/AppsFlyeriOSWrapper.mm +++ b/Assets/AppsFlyer/Plugins/iOS/AppsFlyeriOSWrapper.mm @@ -18,7 +18,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.14.3" + pluginVersion:@"6.14.4" additionalParams:nil]; startRequestObjectName = stringFromChar(objectName); AppsFlyeriOSWarpper.didCallStart = YES; diff --git a/android-unity-wrapper/gradle.properties b/android-unity-wrapper/gradle.properties index 3abcb409..efad7aa7 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=39 -VERSION_NAME=6.14.3 +VERSION_CODE=40 +VERSION_NAME=6.14.4 POM_ARTIFACT_ID=unity-wrapper POM_PACKAGING=aar diff --git a/android-unity-wrapper/unitywrapper/build.gradle b/android-unity-wrapper/unitywrapper/build.gradle index 9928fdec..654774f8 100644 --- a/android-unity-wrapper/unitywrapper/build.gradle +++ b/android-unity-wrapper/unitywrapper/build.gradle @@ -31,7 +31,7 @@ repositories { dependencies { compileOnly fileTree(dir: 'libs', include: ['*.jar']) compileOnly 'androidx.appcompat:appcompat:1.1.0' - compileOnly 'com.appsflyer:af-android-sdk:6.14.0' + compileOnly 'com.appsflyer:af-android-sdk:6.14.2' } 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 02418bea..9aa3603d 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 @@ -43,7 +43,7 @@ public class AppsFlyerAndroidWrapper { private static final String ON_DEEPLINKING = "onDeepLinking"; private static final String START_REQUEST_CALLBACK = "requestResponseReceived"; private static final String IN_APP_RESPONSE_CALLBACK = "inAppResponseReceived"; - private static final String PLUGIN_VERSION = "6.14.3"; + private static final String PLUGIN_VERSION = "6.14.4"; private static final long DDL_TIMEOUT_DEFAULT = 3000; private static AppsFlyerConversionListener conversionListener; private static String devkey = "";