Notice
Recent Posts
Recent Comments
Link
관리 메뉴

설.현.아빠

[개발 Tip] 유일한 Android device ID 본문

안드로이드/Device & Sensor

[개발 Tip] 유일한 Android device ID

설.현.아빠 2011. 2. 11. 09:54



1)
import android.provider.Settings.Secure;
String android_id = Secure.getString(getContext().getContentResolver(),
                                                        Secure.ANDROID_ID);
2)
TelephonyManager manager = (TelephonyManager)ctx.getSystemService(Context.TELEPHONY_SERVICE);
String deviceId = manager.getDeviceId();

[출처] [개발 Tip] 유일한 Android device ID (안드로이드 개발자모임 [구글폰,HTC,삼성]) |작성자 에디터

 

 

흠...이걸 어따 쓰나...내 폰의 ID니까 어플 동작시 나한테만 보이도록 설정할게 있다면...나중에 함 사용해봐야지^^

Comments