SDK for Android Reference Guide
You can use the SDK for Android to facilitate the process of generating or establishing client identity using EUID, retrieving advertising tokens for bidstream use, and automatically refreshing EUID tokens.
The following Android-related plugins, and associated documentation, are also available.
Purpose | Product/Documentation |
---|---|
To use the Google Mobile Ads (GMA) SDK to send EUID tokens as secure signals in ad requests from Android apps | EUID GMA Plugin for Android Integration Guide |
To use the Google Interactive Media Ads (IMA) SDK for Android to send EUID tokens as secure signals in ad requests from Android apps | EUID IMA Plugin for Android Integration Guide |
For FAQs relating to mobile publisher integrations, see FAQs for Mobile Integrations.
Non-Mobile Android Device Support
This SDK for Android can be used for non-mobile devices for Android platforms as well.
Functionality
This SDK simplifies integration with EUID for any publishers who want to support EUID for apps running on Android devices. The following table shows the functions it supports.
Encrypt Raw EUID to EUID Token | Decrypt EUID Token to Raw EUID | Generate EUID Token from Personal Data | Refresh EUID Token | Map Personal Data to Raw EUIDs | Monitor Rotated Salt Buckets |
---|---|---|---|---|---|
— | — | ✅ | ✅ | — | — |
The SDK for Android is designed to generate and/or manage EUID identity on behalf of Android apps. It enables EUID identity to be persisted across app lifecycles by securely storing the identity on a device via platform-native encryption tools.
By default, the SDK automatically refreshes EUID identity based on expiration dates. However, you can disable this to allow implementing apps to manage the EUID identity lifecycle manually.
API Permissions
To use this SDK, you'll need to complete the EUID account setup by following the steps described in the Account Setup page. You'll be granted permission to use specific functions offered by the SDK, and given credentials for that access.
SDK Version
This documentation is for the SDK for Android version 1.6.0 and later.
For current and past release notes information, see https://github.com/IABTechLab/uid2-android-sdk/releases.
GitHub Repository/Binary
This SDK is in the following open-source GitHub repository:
The binary is published on Sonatype:
Minimum Requirements
To consume the binary package of this SDK in your app:
- Minimum target Android version: 4.4+ / API 19+ (SDK) 5.0+
To run the development app (see Client-Side Integration Guide for Mobile) or to build binary from source code, the minimum requirements are as follows:
- Android Studio version: Check the Android Gradle Plugin (AGP) version required by the EUID SDK specified in the code repository (see the stated
agp
version), and check the Android Gradle Plugin release notes for the corresponding Android Studio version required. - Minimum target Android version: 4.4+ / API 19+ (SDK) 5.0+ / API 21+ (Dev-App)
Installation
There are two options for installing the Android EUID SDK:
Installing with Gradle
To install with Gradle, add the SDK as a dependency in the build.gradle file:
implementation 'com.uid2:uid2-android-sdk:1.6.0'
Installing with Maven
To install with Maven, add the SDK as a dependency in the pom.xml
file:
<dependency>
<groupId>com.uid2</groupId>
<artifactId>uid2-android-sdk</artifactId>
<version>1.6.0</version>
</dependency>
Usage Guidelines
The EUIDManager singleton is the primary developer API for the SDK for Android. It is responsible for storing, refreshing, and retrieving the EUID Identity including the EUID token.
The EUIDManager singleton must be initialized before use because:
- It allows for easier access later.
- It allows the consuming application to potentially provide its own network instance, responsible for making requests.
The initialization can be done during the creation of the application instance, as shown in the following example:
class MyApplication : Application() {
override fun onCreate() {
super.onCreate()
// Initialize the EUIDManager class. Use DefaultNetworkSession rather than providing our own
// custom implementation. This can be done to allow wrapping something like OkHttp.
EUIDManager.init(this.applicationContext)
There are two ways to establish an initial EUID Identity:
-
Generate the EUID identity using personal data—email (hashed or unhashed). For integration instructions, see Client-Side Integration Guide for Mobile.
-
Create an EUID identity server-side and then pass it into the EUID SDK. For integration instructions, see Client-Server Integration Guide for Mobile.
The EUID Mobile SDKs can perform refreshes of EUID identities, after an Identity is established. This is because the refresh functionality relies on the refresh tokens that are part of the EUID Identity.
Code Samples
The following code samples provide examples of performing specific activities relating to managing EUID with the SDK for Android.
Generate an initial EUID Identity (see Client-Side Integration Guide for Mobile):
EUIDManager.getInstance().generateIdentity(
identityRequest: IdentityRequest,
subscriptionId: String,
publicKey: String,
onResult: (GenerateIdentityResult) -> Unit
)
Set the EUID Identity (see Client-Server Integration Guide for Mobile):
EUIDManager.getInstance().setIdentity(identity: UID2Identity)
Get the EUID token (advertising token) to pass to the Advertising SDK (for ad request or bidstream use):
EUIDManager.getInstance().getAdvertisingToken()
EUIDManager API
This section includes the functions and variables that are part of the EUIDManager API.
Functions
The following functions are available as part of the EUIDManager API:
- generateIdentity()
- setIdentity()
- resetIdentity()
- refreshIdentity()
- getAdvertisingToken()
- setAutomaticRefreshEnabled()
generateIdentity()
Generate an EUID Identity using personal data. For instructions, see Configure the EUID Mobile SDK in the Client-Side Integration Guide for Mobile.
setIdentity()
Sets an EUID Identity, created server-side, to be managed by the SDK. For details, see Configure the EUID Mobile SDK in the Client-Server Integration Guide for Mobile.
resetIdentity()
Resets or removes the EUID Identity currently being managed by the SDK.
refreshIdentity()
Manually refreshes the EUID Identity being managed by the SDK.
getAdvertisingToken()
If the current EUID Identity is valid, this function returns the EUID token (advertising token).
setAutomaticRefreshEnabled()
Toggle for automatic refresh functionality.
Variables
The following variables are available as part of the EUIDManager API:
identity
The Identity variable stores and returns the current UID2Identity data object being managed by the SDK.
identityStatus
The identityStatus variable stores and returns the status of the current EUID Identity being managed by the SDK.