mirror of
https://github.com/roytam1/UXP.git
synced 2026-06-16 05:18:39 +00:00
11 lines
288 B
Java
11 lines
288 B
Java
package com.adjust.sdk.plugin;
|
|
|
|
import android.content.Context;
|
|
import android.provider.Settings.Secure;
|
|
|
|
public class AndroidIdUtil {
|
|
public static String getAndroidId(final Context context) {
|
|
return Secure.getString(context.getContentResolver(), Secure.ANDROID_ID);
|
|
}
|
|
}
|