Skip to content

Commit c149abc

Browse files
authored
Merge pull request #37 from AppsFlyerSDK/releases/6.x.x/6.8.x/6.8.0
docs
2 parents 9840136 + 02197e6 commit c149abc

File tree

3 files changed

+35
-3
lines changed

3 files changed

+35
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Versions
22

3+
## 6.8.0
4+
- update iOS SDK to 6.8.1
5+
- update Android SDK to 6.8.0
6+
- new android API setDisableNetworkData
7+
38
## 6.5.2
49
- update iOS SDK to 6.5.2
510
- update Android SDK to 6.5.2

README.md

Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,19 +52,22 @@ In order for us to provide optimal support, we would kindly ask you to submit an
5252
- [setPartnerData](#partnerData)
5353
- [setOneLinkCustomDomain](#customDomains)
5454
- [setCurrentDeviceLanguage](#currentLang) *(ios only)*
55-
- [setSharingFilterForPartners](#SharingFilterForPartners)
55+
- [setSharingFilterForPartners](#SharingFilterForPartners)
56+
- [setDisableNetworkData](#disableNetworkID) *(android only)*
5657

5758

5859
### <a id="plugin-build-for"> This plugin is built for
5960

60-
- Android AppsFlyer SDK **v6.5.2**
61-
- iOS AppsFlyer SDK **v6.5.2**
61+
- Android AppsFlyer SDK **v6.8.0**
62+
- iOS AppsFlyer SDK **v6.8.1**
6263

6364

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

69+
70+
6871

6972

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

733736
```
734737
738+
---
739+
740+
741+
##### <a id="disableNetworkID"> **`setDisableNetworkData(disable);`**
742+
Use to opt-out of collecting the network operator name (carrier) and sim operator name from the device.
743+
744+
| parameter | type | description |
745+
| ----------- |-----------------------------|--------------|
746+
| `disable` | `bool` | Defaults to false
747+
748+
749+
*Example:*
750+
751+
```cpp
752+
AppsFlyerX::setDisableNetworkData(true);
753+
```
754+
735755
---
736756

737757
## **Migration Guide to v6**

docs/Android_README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,3 +74,10 @@ In the Package Explorer, open the `AndroidManifest.xml` file of your Android pro
7474
```xml
7575
<uses-permission android:name="android.permission.INTERNET" />
7676
```
77+
78+
### The AD_ID permission for android apps
79+
80+
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,
81+
to allow the SDK to collect the Android Advertising ID on apps targeting API 33.
82+
If your app is targeting children, you may need to revoke this permission to comply with Google's Data policy.
83+
You can read more about it [here](https://support.appsflyer.com/hc/en-us/articles/7569900844689).

0 commit comments

Comments
 (0)