diff --git a/README.md b/README.md index a3145bc1..5fdcf056 100755 --- a/README.md +++ b/README.md @@ -42,8 +42,8 @@ You can read more [here](https://support.appsflyer.com/hc/en-us/articles/2070320 ### This plugin is built for -- iOS AppsFlyerSDK **v6.13.1** -- Android AppsFlyerSDK **v6.13.0** +- iOS AppsFlyerSDK **v6.14.2** +- Android AppsFlyerSDK **v6.14.0** ### ❗v6 Breaking Changes diff --git a/RELEASENOTES.md b/RELEASENOTES.md index 92143197..acced19a 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -1,3 +1,8 @@ +## 6.14.3 + Release date: *2024-04-30* + +- Cordova >> Update Plugin to v6.14.1 + ## 6.13.1 Release date: *2024-03-06* diff --git a/package.json b/package.json index 3dc8772e..2b7d693f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cordova-plugin-appsflyer-sdk", - "version": "6.13.1", + "version": "6.14.3", "description": "Cordova AppsFlyer SDK Plugin", "cordova": { "id": "cordova-plugin-appsflyer-sdk", diff --git a/plugin.xml b/plugin.xml index af9b2180..054aa3a6 100644 --- a/plugin.xml +++ b/plugin.xml @@ -91,7 +91,7 @@ - + diff --git a/src/android/com/appsflyer/cordova/plugin/AppsFlyerConstants.java b/src/android/com/appsflyer/cordova/plugin/AppsFlyerConstants.java index 0e027c99..0cd7b5e3 100644 --- a/src/android/com/appsflyer/cordova/plugin/AppsFlyerConstants.java +++ b/src/android/com/appsflyer/cordova/plugin/AppsFlyerConstants.java @@ -6,7 +6,7 @@ public class AppsFlyerConstants { - final static String PLUGIN_VERSION = "6.13.1"; + final static String PLUGIN_VERSION = "6.14.0"; final static String NO_DEVKEY_FOUND = "AppsFlyer 'devKey' is missing or empty"; final static String NO_GCM_PROJECT_NUMBER_PROVIDED = "No GCM Project number provided"; final static String SUCCESS = "Success"; diff --git a/src/android/cordovaAF.gradle b/src/android/cordovaAF.gradle index 2d6168ef..70d1d051 100644 --- a/src/android/cordovaAF.gradle +++ b/src/android/cordovaAF.gradle @@ -4,7 +4,7 @@ repositories { dependencies { implementation 'com.android.installreferrer:installreferrer:2.1' - implementation 'com.appsflyer:af-android-sdk:6.13.0@aar' + implementation 'com.appsflyer:af-android-sdk:6.14.0@aar' implementation 'com.android.support:support-annotations:28.0.0' implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.6.20' } diff --git a/src/ios/AppsFlyerPlugin.m b/src/ios/AppsFlyerPlugin.m index 521242bc..f88ba119 100755 --- a/src/ios/AppsFlyerPlugin.m +++ b/src/ios/AppsFlyerPlugin.m @@ -96,7 +96,7 @@ - (void)initSdk:(CDVInvokedUrlCommand*)command } // Initialize the SDK - [[AppsFlyerLib shared] setPluginInfoWith:AFSDKPluginCordova pluginVersion:@"6.13.1" additionalParams:nil]; + [[AppsFlyerLib shared] setPluginInfoWith:AFSDKPluginCordova pluginVersion:@"6.14.3" additionalParams:nil]; [AppsFlyerLib shared].appleAppID = appId; [AppsFlyerLib shared].appsFlyerDevKey = devKey; [AppsFlyerLib shared].isDebug = isDebug;