GAID(Google’s advertising ID)값 가져오기
○ 코드 AsyncTask taskAdId = new AsyncTask() { @Override protected String doInBackground(Void... params) { AdvertisingIdClient.Info adInfo = null; try { adInfo = AdvertisingIdClient.getAdvertisingIdInfo(getApplicationContext()); } catch (GooglePlayServicesNotAvailableException e) { e.printStackTrace(); } catch (GooglePlayServicesRepairableException e) { e.printStackTrace(); } catch (IOException e) ..
2020.07.12