adjust-icon

Get device information

The Adjust SDK contains helper methods that return device information. Use these methods to add details to your callbacks and improve your reporting.

Adjust device identifier

Method signature
public static void getAdid(final OnAdidReadListener onAdidReadListener)

Adjust generates a unique Adjust Device ID (ADID) for each device. You can request this information asynchronously from the Adjust SDK by passing a callback method to the Adjust.getAdid method.

Adjust device identifier with timeout

Method signature
public static void getAdidWithTimeout(final Context context, final long timeoutInMilliSec, final OnAdidReadListener onAdidReadListener)

You can also request ADID value asynchronously by calling Adjust.getAdidWithTimeout, providing both a callback function and a timeout (in milliseconds). If the SDK retrieves the ADID within the specified timeout, it supplies the value to your callback as a String. Otherwise, it passes null.

Google Play Services Advertising ID

Method signature
public static void getGoogleAdId(final Context context,final OnGoogleAdIdReadListener onGoogleAdIdReadListener)

The Google Play Services Advertising ID (GPS ADID) is a device-specific identifier for Android devices.

Users can opt out of sharing their GPS ADID by toggling the “Opt out of Ads Personalization” setting on their device. When a user enables this setting, the Adjust SDK returns a string of zeros when trying to read the GPS ADID.

You can access this value by calling the getGoogleAdId method in a background thread. Assign a delegate function to access the GPS ADID value.

Amazon Advertiser ID

Method signature
public static void getAmazonAdId(final Context context,final OnAmazonAdIdReadListener onAmazonAdIdReadListener)

The Amazon Advertising ID (Amazon Ad ID) is a device-specific identifier for Android devices. You can request this information asynchronously from the Adjust SDK by passing a callback method to the Adjust.getAmazonAdId method.

Adjust SDK version getter

To read the version of the Adjust SDK, pass a callback function to the Adjust.getSdkVersion method. The version number is available as a String in your callback function.