Adjust Android SDK Documentation

repository·master·Indexed 20 days ago

https://github.com/adjust/android_sdk

A mobile measurement partner (MMP) tool for attribution, event tracking, and analytics in Android applications. Includes guides for integration, configuration, and API usage, such as retrieving the Amazon Fire Advertising ID asynchronously via the getFireAdvertisingIdBypassConditions method.

Tokens
265
Snippets
1
Records
2
Agent score
20%

What's inside Adjust Android SDK

  1. Access Adjust SDK for Android documentation

    master

    The Adjust SDK for Android provides comprehensive documentation through the Adjust Help Center. Documentation is available in multiple languages to assist developers with integration, configuration, and API usage.

    Available languages:

    • English
    • 中文 (Chinese)
    • 日本語 (Japanese)
    • 한국어 (Korean)
  2. Retrieve Amazon Fire Advertising ID asynchronously

    master

    You can bypass standard conditions to retrieve the Amazon Fire Advertising ID by using the getFireAdvertisingIdBypassConditions method. This method requires a ContentResolver and an implementation of the OnAmazonAdIdReadListener interface to handle the result asynchronously.

    DeviceInfo.getFireAdvertisingIdBypassConditions(contentResolver, new OnAmazonAdIdReadListener() {
        @Override
        public void onAmazonAdIdRead(String amazonAdId) {
            // Handle the retrieved Amazon Advertising ID
        }
    });