diff options
Diffstat (limited to 'mobile/android/thirdparty/com/adjust/sdk/plugin/AndroidIdUtil.java')
-rw-r--r-- | mobile/android/thirdparty/com/adjust/sdk/plugin/AndroidIdUtil.java | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mobile/android/thirdparty/com/adjust/sdk/plugin/AndroidIdUtil.java b/mobile/android/thirdparty/com/adjust/sdk/plugin/AndroidIdUtil.java new file mode 100644 index 000000000..96a072287 --- /dev/null +++ b/mobile/android/thirdparty/com/adjust/sdk/plugin/AndroidIdUtil.java @@ -0,0 +1,10 @@ +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); + } +} |