- Firebase 타켓팅
- 안드로이드 개발 유니크 아이디, 디바이스아이디 시리얼 넘버 관련 Is there a unique Android device ID?
- [Android] 단말기 고유 값 구하는 방법(Android UniqueId)
AdMob 광고 코드
MobileAds.initialize(getApplicationContext(), getString(R.string.banner_ad_unit_id) ); AdView mAdView = (AdView) findViewById(R.id.adView); AdRequest request = new AdRequest.Builder() .addTestDevice(AdRequest.DEVICE_ID_EMULATOR) // All emulators .addTestDevice("AC98C820A50B4AD8A2106EDE96FB87D4") // An example device ID .setLocation(location) // 위치 .setGender(AdRequest.GENDER_FEMALE) // 성별 .setBirthday(new GregorianCalendar(1985, 1, 1).getTime()) // 생일 .build(); adView.loadAd(request);
ANDROID ID 구하기
String androID = Settings.Secure.getString(mContext.getContentResolver(), Settings.Secure.ANDROID_ID); Log.d(TAG, "androidID :" + androidID);
반응형
'ide > androidstudio' 카테고리의 다른 글
dex2jar (0) | 2017.02.07 |
---|---|
Unable to start activity ComponentInfo, on a null object reference (0) | 2017.01.25 |
초기화 값 저장/호출 SharedPreferences (0) | 2017.01.23 |
네트워크 상태로 자동 실행 (0) | 2017.01.20 |
Android Swipe (0) | 2017.01.19 |