Includes both the advertising ID as well as the limit ad tracking setting.
| String |
getId()
Retrieves the advertising ID.
|
| boolean |
isLimitAdTrackingEnabled()
Retrieves whether the user has limit ad tracking enabled or not.
|
| String |
toString()
|
This constructor is deprecated.
This constructor is not necessary for the users to access the info.
Constructs an Info Object with the specified advertising Id and limit
ad tracking setting.
| advertisingId | The advertising ID. |
|---|---|
| limitAdTrackingEnabled | The limit ad tracking setting. It is true if the user has limit ad tracking enabled. False, otherwise. |
Retrieves the advertising ID.
Starting from late 2021, on Android 12 devices, when
isLimitAdTrackingEnabled() is true, the returned value of this
API will be 00000000-0000-0000-0000-000000000000 regardless of the app’s
target SDK level.
In early 2022, this change will be applied to all the devices that support Google Play services.
Apps with target API level set to 31 (Android 12) or later must declare the normal
permission com.google.android.gms.AD_ID as below in the
AndroidManifest.xml in order to use this API.
00000000-0000-0000-0000-000000000000 starting early 2022.Log tag
AdvertisingIdSettings.
<uses-permission android:name="com.google.android.gms.permission.AD_ID"/>
If you need to prevent the permission from getting merged into your app through dependencies such as SDKs, include the below element in your manifest instead.
<uses-permission android:name="com.google.android.gms.permission.AD_ID"
tools:node="remove"/>
For apps with target API level set to 30 (Android 11) or older, this permission is not needed.
See Advertising ID Play Console Help for more details.
Retrieves whether the user has limit ad tracking enabled or not.
When the returned value is true, the returned value of
getId() will always be 00000000-0000-0000-0000-000000000000
starting with Android 12.