Skip to content

Commit

Permalink
Merge pull request #37 from AppsFlyerSDK/releases/6.x.x/6.8.x/6.8.0
Browse files Browse the repository at this point in the history
docs
  • Loading branch information
af-margot authored Aug 21, 2022
2 parents 9840136 + 02197e6 commit c149abc
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
26 changes: 23 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)*


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


### <a id="integration"> Integration:
- [Android integration Documents](docs/Android_README.md)
- [iOS integration Documents](docs/iOS_README.md)





## <a id="usage"> Usage:
Expand Down Expand Up @@ -732,6 +735,23 @@ Used by advertisers to set some (one or more) networks/integrated partners to ex

```
---
##### <a id="disableNetworkID"> **`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**
Expand Down
7 changes: 7 additions & 0 deletions docs/Android_README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,3 +74,10 @@ In the Package Explorer, open the `AndroidManifest.xml` file of your Android pro
```xml
<uses-permission android:name="android.permission.INTERNET" />
```

### 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).

0 comments on commit c149abc

Please sign in to comment.