java - Is there a unique Android device ID? -


do android devices have unique id, , if so, simple way access using java?

settings.secure#android_id returns android id unique each user 64-bit hex string.

import android.provider.settings.secure;  private string android_id = secure.getstring(getcontext().getcontentresolver(),                                                         secure.android_id);  

Comments

Popular posts from this blog

Sort a complex associative array in PHP -

vb.net - How to ignore if a cell is empty nothing -

recursion - Can every recursive algorithm be improved with dynamic programming? -