Skip to content

Commit

Permalink
[amplitude] Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
bbarthec committed Aug 24, 2020
1 parent 932dc92 commit ed3d8ba
Show file tree
Hide file tree
Showing 9 changed files with 3 additions and 16 deletions.
1 change: 0 additions & 1 deletion docs/pages/versions/unversioned/sdk/amplitude.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,6 @@ By default the Amplitude SDK will track several user properties such as carrier
| `disableDeviceManufacturer` | Disable tracking of the device manufacturer. |
| `disableDeviceModel` | Disable tracking of the device model. |
| `disableDMA` | Disable tracking of the user's DMA. |
| `disableIDFA` | Disable tracking of the user's IDFA. |
| `disableIDFV` | Disable tracking of the user's IDFV. |
| `disableIPAddress` | Disable tracking of the user's IP address. |
| `disableLanguage` | Disable tracking of the device's language. |
Expand Down
1 change: 0 additions & 1 deletion docs/pages/versions/v39.0.0/sdk/amplitude.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,6 @@ By default the Amplitude SDK will track several user properties such as carrier
| `disableDeviceManufacturer` | Disable tracking of the device manufacturer. |
| `disableDeviceModel` | Disable tracking of the device model. |
| `disableDMA` | Disable tracking of the user's DMA. |
| `disableIDFA` | Disable tracking of the user's IDFA. |
| `disableIDFV` | Disable tracking of the user's IDFV. |
| `disableIPAddress` | Disable tracking of the user's IP address. |
| `disableLanguage` | Disable tracking of the device's language. |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,6 @@ - (Amplitude *)amplitudeInstance
if ([options[@"disableDMA"] boolValue]) {
[trackingOptions disableDMA];
}
if ([options[@"disableIDFA"] boolValue]) {
[trackingOptions disableIDFA];
}
if ([options[@"disableIDFV"] boolValue]) {
[trackingOptions disableIDFV];
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,6 @@ - (Amplitude *)amplitudeInstance
if ([options[@"disableDMA"] boolValue]) {
[trackingOptions disableDMA];
}
if ([options[@"disableIDFA"] boolValue]) {
[trackingOptions disableIDFA];
}
if ([options[@"disableIDFV"] boolValue]) {
[trackingOptions disableIDFV];
}
Expand Down
4 changes: 2 additions & 2 deletions packages/expo-analytics-amplitude/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

### 🛠 Breaking changes

### 🎉 New features
- Upgraded native Amplitude iOS library from `4.7.1` to `6.0.0`. This removes the IDFA code that was previously included with the Amplitude library. `disableIDFA` option for `Amplitude.setTrackingOptions` is removed. If you would like to collect the IDFA, you must be in the bare workflow. ([#9880](https://github.com/expo/expo/pull/9880) by [@bbarthec](https://github.com/bbarthec))

- Upgraded native Amplitude iOS library from `4.7.1` to `6.0.0`. ([#9880](https://github.com/expo/expo/pull/9880) by [@bbarthec](https://github.com/bbarthec))
### 🎉 New features

### 🐛 Bug fixes

Expand Down
1 change: 0 additions & 1 deletion packages/expo-analytics-amplitude/build/Amplitude.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/expo-analytics-amplitude/build/Amplitude.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,6 @@ - (Amplitude *)amplitudeInstance
if ([options[@"disableDMA"] boolValue]) {
[trackingOptions disableDMA];
}
if ([options[@"disableIDFA"] boolValue]) {
[trackingOptions disableIDFA];
}
if ([options[@"disableIDFV"] boolValue]) {
[trackingOptions disableIDFV];
}
Expand Down
1 change: 0 additions & 1 deletion packages/expo-analytics-amplitude/src/Amplitude.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ export interface AmplitudeTrackingOptions {
disableDeviceManufacturer?: boolean;
disableDeviceModel?: boolean;
disableDMA?: boolean;
disableIDFA?: boolean;
disableIDFV?: boolean;
disableIPAddress?: boolean;
disableLanguage?: boolean;
Expand Down

0 comments on commit ed3d8ba

Please sign in to comment.