Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge releases/6.x.x/6.14.x/6.14.3-rc1 into main #124

Merged
merged 9 commits into from
May 1, 2024
Merged
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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*

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@

### <a id="plugin-build-for"> 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**

## <a id="breaking-changes-6-12-1"> ❗❗ Breaking changes when updating to v6.12.1 ❗❗
Starting from v6.12.1, this plugin works only with Capacitor 5. </br>
Expand Down
13 changes: 12 additions & 1 deletion docs/Guides.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
- [Uninstall](#uninstall)
- [Android Uninstall Setup](#android-uninstall)
- [iOS Uninstall Setup](#ios-uninstall)

- [Install Referrers](#referrers)


## <a id="init-sdk"> Init SDK
Expand Down Expand Up @@ -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'});
```

### <a id="referrers"> 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)<br>
[Meta Install Referrer](https://dev.appsflyer.com/hc/docs/install-android-sdk#meta-install-referrer)<br>
[Huawei Install Referrer](https://dev.appsflyer.com/hc/docs/install-android-sdk#huawei-install-referrer)<br>
[Xiaomi GetApps store referrer](https://dev.appsflyer.com/hc/docs/install-android-sdk#xiaomi-getapps-store-referrer)<br>

**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)
2 changes: 1 addition & 1 deletion ios/Plugin/AppsFlyerPlugin.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
Loading