[Android] 안드로이드_고유 ID 사용 (feat. ADID(Advertising ID)_GAID))
ADID(Advertising ID) 추출하기 ADID 보통 안드로이드에서 ADID 란 GAID(Google Advertising ID)를 의미한다. 구글에서 제공하는 Google Play Service의 API를 이용하여 Ad ID를 얻을 수 있는데, Google Play Service가 없는 디바이스에서는 사용이 불가능하다. 해당 GAID는 유저식별용으로 사용하기에 아주 적합하다. (ex. 현장 업무용 본인 단말기 식별용) 이제 해당 ID 를 추출하는 방법에 대해 알아보자.우선 앞서 말한거처럼 Google Play Service의 API를 사용하기 때문에 build.gradle 에 들어가 dependencies에서 다음과 같이 선언해준다. dependencies { ... implementation ..
2019. 11. 10.