Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Android アプリケーションで、Android デバイスの GPS ID (IMEI 番号など) を取得したいと考えています。それが可能かどうかわかりません。この部分で私を助けてください。
ありがとう、Android 開発者。
Android Mobile Requires Permission の IMEI 番号を取得します: READ_PHONE_STATE
TelephonyManager teleManager = (TelephonyManager) context .getSystemService(Context.TELEPHONY_SERVICE); String IMEI = teleManager.getDeviceId();