1. 程式人生 > >獲取IMEI裝置的唯一標識以及異常提交

獲取IMEI裝置的唯一標識以及異常提交

  TelephonyManager manager = (TelephonyManager) getSystemService(TELEPHONY_SERVICE);
        //IMEI
        String deviceId = manager.getDeviceId();

        //這個方法可以線上程意外終止的情況下進處理 介面回撥
        Thread.setDefaultUncaughtExceptionHandler(new Thread.UncaughtExceptionHandler() {
            @Override
            public
void uncaughtException(Thread t, Throwable e) { //異常處理 } });