mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-19 02:43:07 +09:00
10 lines
288 B
Java
10 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);
|
||
|
|
}
|
||
|
|
}
|