안드로이드 광고 ID를 받아보도록 하겠습니다.
5090 단어 Android
참고 자료
안드로이드 광고 ID를 받아보도록 하겠습니다.
Advertising ID는 Google의 문서에도 쓰여 있는 것처럼 매우 간단합니다.주 스레드 외에도 Google Play Services를 가져와야 합니다.
Google Play Services의 대응
Eclipse 등에서 Android SDK Manager를 시작하고 Extras에서 Google Play Services 설치를 선택합니다.
Google PlayServices 설치
Google Play Services 가져오기
Existing Android Code Into Workspace 를 선택합니다.다음 디렉토리를 복사하여 가져옵니다.
이렇게 이전의 준비가 완성되었다.
광고 ID 취득
주 스레드가 안 된다고 쓰여 있어서 new Theread에서 얻었습니다.
MainActivity.java
public void getAdId() {
Thread adIdThread = new Thread(new Runnable() {
@Override
public void run() {
Info adInfo = null;
try {
adInfo = AdvertisingIdClient
.getAdvertisingIdInfo(getApplicationContext());
final String id = adInfo.getId();
final boolean isLAT = adInfo.isLimitAdTrackingEnabled();
Log.d("DEBUG", "AndroidAdID : " + id);
Log.d("DEBUG", "OptoutFlag : " + String.valueOf(isLAT));
} catch (Exception e) {
}
}
});
adIdThread.start();
}
참조: https://developer.android.com/google/play-services/id.htmlislimit AdTracking Ennabled () 는 모든 사용자가 Google 설정 애플리케이션에서 설정할 수 있는 '인터뷰 기반 광고 종료' 를 검사할 수 있는지 여부를 표시하는 표지입니다.
이 광고 ID 자체가 무효라고 할 수는 없는데...복위가 최선의 저항입니까?
Reference
이 문제에 관하여(안드로이드 광고 ID를 받아보도록 하겠습니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/zaru/items/81d28ea0924113dbd1f8텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)