diff --git a/CHANGELOG.md b/CHANGELOG.md index a6cf617..162370e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 6.14.3 + Release date: *2024-05-01* + +- Capacitor >> Update Plugin to v6.14.3 + ## 6.13.1 Release date: *2024-03-07* diff --git a/README.md b/README.md index 86fa9bd..5fd2504 100644 --- a/README.md +++ b/README.md @@ -14,8 +14,8 @@ ### This plugin is built for -- Android AppsFlyer SDK **6.13.0** -- iOS AppsFlyer SDK **6.13.1** +- Android AppsFlyer SDK **6.14.0** +- iOS AppsFlyer SDK **6.14.3** ## ❗❗ Breaking changes when updating to v6.12.1 ❗❗ Starting from v6.12.1, this plugin works only with Capacitor 5.
diff --git a/docs/Guides.md b/docs/Guides.md index e6d4126..032f7d1 100644 --- a/docs/Guides.md +++ b/docs/Guides.md @@ -17,7 +17,7 @@ - [Uninstall](#uninstall) - [Android Uninstall Setup](#android-uninstall) - [iOS Uninstall Setup](#ios-uninstall) - +- [Install Referrers](#referrers) ##
Init SDK @@ -375,3 +375,14 @@ Note : If you use this method you will need to collect the APNs token using a th ```typescript AppsFlyer.updateServerUninstallToken({token: 'replace_with_token'}); ``` + +### Adding Install Referrer Libraries +The AppsFlyer SDK supports several store referrer libraries. Using a store referrer improves attribution accuracy. + +You only need to add the referrer dependency, the SDK takes care of the rest: +[Google Play Install Referrer](https://dev.appsflyer.com/hc/docs/install-android-sdk#google-play-install-referrer)
+[Meta Install Referrer](https://dev.appsflyer.com/hc/docs/install-android-sdk#meta-install-referrer)
+[Huawei Install Referrer](https://dev.appsflyer.com/hc/docs/install-android-sdk#huawei-install-referrer)
+[Xiaomi GetApps store referrer](https://dev.appsflyer.com/hc/docs/install-android-sdk#xiaomi-getapps-store-referrer)
+ +**Note:** Satring plugin version 6.14.3, Huawei referrer is collected in a different way than it used to be, please follow the new instructions provided [here.](https://dev.appsflyer.com/hc/docs/install-android-sdk#huawei-install-referrer) \ No newline at end of file diff --git a/ios/Plugin/AppsFlyerPlugin.swift b/ios/Plugin/AppsFlyerPlugin.swift index 9aefc42..e0988a0 100644 --- a/ios/Plugin/AppsFlyerPlugin.swift +++ b/ios/Plugin/AppsFlyerPlugin.swift @@ -5,7 +5,7 @@ import AppsFlyerLib @objc(AppsFlyerPlugin) public class AppsFlyerPlugin: CAPPlugin { - private let APPSFLYER_PLUGIN_VERSION = "6.13.1" + private let APPSFLYER_PLUGIN_VERSION = "6.14.3" private var conversion = true private var oaoa = true private var udl = false diff --git a/package.json b/package.json index 97590cb..932f33e 100644 --- a/package.json +++ b/package.json @@ -1,9 +1,9 @@ { "name": "appsflyer-capacitor-plugin", - "version": "6.13.1", - "iosSdkVersion": "6.13.1", - "androidSdkVersion": "6.13.0", - "buildNumber": "12", + "version": "6.14.3", + "iosSdkVersion": "6.14.3", + "androidSdkVersion": "6.14.0", + "buildNumber": "13", "description": "AppsFlyer SDK plugin for Capacitor", "main": "dist/plugin.cjs.js", "module": "dist/esm/index.js",