Home > デバイスID


AndroidでデバイスIDをプログラムで取得する方法

TelephonyManagerを使用する方法:import android.content.Context; import android.telephony.TelephonyManager; import android.util.Log; public class DeviceUtils { private static final String TAG = "DeviceUtils"; public static String getDeviceId(Context context) { TelephonyManager telephonyManager = (Telepho>>More