Skip to content

Commit 8e5b8c0

Browse files
authored
Update README.md
1 parent 8c8d33a commit 8e5b8c0

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

README.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ our [Android web views SDK guide](doc/english/web_views.md).
4444
* [Adjust device identifier](#di-adid)
4545
* [User attribution](#user-attribution)
4646
* [Push token](#push-token)
47+
* [Track additional device identifiers](#track-additional-ids)
4748
* [Pre-installed trackers](#pre-installed-trackers)
4849
* [Deep linking](#deeplinking)
4950
* [Standard deep linking scenario](#deeplinking-standard)
@@ -744,7 +745,27 @@ We still support the previous signature of the same method:
744745
Adjust.setPushToken(pushNotificationsToken);
745746
```
746747

747-
Push token is needed for uninstall tracking feature.
748+
Push token is used for Audience Builder and client callbacks and needed for the upcoming uninstall tracking feature.
749+
750+
### <a id="track-additional-ids"></a>Track additional device identifiers
751+
752+
If you are distributing your app **outside of Google Play Store** and would like to track additional device identifiers (IMEI and MEID), you need to explicitly instruct Adjust SDK to do so. You can do that by calling `setReadMobileEquipmentIdentity` method of `AdjustConfig` instance and passing `true` parameter to it. **Adjust SDK doesn't collect these identifiers by default**.
753+
754+
```java
755+
AdjustConfig config = new AdjustConfig(this, appToken, environment);
756+
757+
config.setReadMobileEquipmentIdentity(true);
758+
759+
Adjust.onCreate(config);
760+
```
761+
762+
You will also need to add `READ_PHONE_STATE` permission to your `AndroidManifest.xml` file:
763+
764+
```xml
765+
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
766+
```
767+
768+
In order to use this feature, additional steps in your Adjust dashboard will be required. For more information, please contact your dedicated Account Manager or write an E-Mail to [email protected].
748769

749770
### <a id="pre-installed-trackers"></a>Pre-installed trackers
750771

0 commit comments

Comments
 (0)