안드로이드에서 단말 유일의 값을 만들어야 할 필요가 있는 경우가 있다..? (말 참 이상하게 쓴다..) stackoverflow 검색하다가 발견한 방법 androidID, deviceID, simID를 조합해서 만드는 방법이다. final TelephonyManager tm =(TelephonyManager)getBaseContext().getSystemService(Context.TELEPHONY_SERVICE); final String tmDevice, tmSerial, tmPhone, androidId; tmDevice = "" + tm.getDeviceId(); tmSerial = "" + tm.getSimSerialNumber(); androidId = "" + android.provider.S..