diff --git a/CHANGELOG.md b/CHANGELOG.md index b0dbf5d..6d622d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Versions +## 6.8.0 + - update iOS SDK to 6.8.1 + - update Android SDK to 6.8.0 + - new android API setDisableNetworkData + ## 6.5.2 - update iOS SDK to 6.5.2 - update Android SDK to 6.5.2 diff --git a/README.md b/README.md index 722dc9a..4ea863e 100644 --- a/README.md +++ b/README.md @@ -52,19 +52,22 @@ In order for us to provide optimal support, we would kindly ask you to submit an - [setPartnerData](#partnerData) - [setOneLinkCustomDomain](#customDomains) - [setCurrentDeviceLanguage](#currentLang) *(ios only)* -- [setSharingFilterForPartners](#SharingFilterForPartners) +- [setSharingFilterForPartners](#SharingFilterForPartners) +- [setDisableNetworkData](#disableNetworkID) *(android only)* ### This plugin is built for -- Android AppsFlyer SDK **v6.5.2** -- iOS AppsFlyer SDK **v6.5.2** +- Android AppsFlyer SDK **v6.8.0** +- iOS AppsFlyer SDK **v6.8.1** ### Integration: - [Android integration Documents](docs/Android_README.md) - [iOS integration Documents](docs/iOS_README.md) + + ## Usage: @@ -732,6 +735,23 @@ Used by advertisers to set some (one or more) networks/integrated partners to ex ``` +--- + + +##### **`setDisableNetworkData(disable);`** +Use to opt-out of collecting the network operator name (carrier) and sim operator name from the device. + +| parameter | type | description | +| ----------- |-----------------------------|--------------| +| `disable` | `bool` | Defaults to false + + +*Example:* + +```cpp + AppsFlyerX::setDisableNetworkData(true); +``` + --- ## **Migration Guide to v6** diff --git a/docs/Android_README.md b/docs/Android_README.md index 9e24d21..1fe492d 100644 --- a/docs/Android_README.md +++ b/docs/Android_README.md @@ -74,3 +74,10 @@ In the Package Explorer, open the `AndroidManifest.xml` file of your Android pro ```xml ``` + +### The AD_ID permission for android apps + +In v6.8.0 of the AppsFlyer SDK, we added the normal permission com.google.android.gms.permission.AD_ID to the SDK's AndroidManifest, +to allow the SDK to collect the Android Advertising ID on apps targeting API 33. +If your app is targeting children, you may need to revoke this permission to comply with Google's Data policy. +You can read more about it [here](https://support.appsflyer.com/hc/en-us/articles/7569900844689). \ No newline at end of file