AdMob Mobile Ads SDK (Android) 애드몹 광고 SDK (안드로이드)
Android 2022. 1. 31. 15:34 |안드로이드에서 애드몹을 이용해 수익을 창출해 보자.
공식문서에는 아래와 같이 allprojects 섹션에도 포함하라고 나오지만 하지 않아도 된다. (포함 하면 세팅값 충돌 문제가 발생한다)
프로젝트 수준의 build.gradle 파일에서 Google의 Maven 저장소와 Maven 중앙 저장소를 buildscript 및 allprojects 섹션에 포함하세요.
※ Error: Build was configured to prefer settings repositories over project repositories but repository 'Google' was added by build file 'build.gradle'
※ 참고
File - Project Structure... - Dependencies - app - + - Library Dependency - com.google.android.gms:play-services-ads 입력 - Search 클릭
실제 앱에서는 위에 표시된 앱 ID가 아닌 실제 AdMob 앱 ID를 사용한다.
실제 앱에서는 위에 표시된 테스트 광고 단위 ID가 아닌 실제 광고 단위 ID를 사용한다.
adView 옆의 경고(!)는 레이아웃과 뷰세팅값의 불일치로 나타나는 경고로, 간단히 수정 가능하다.
■ Invalid layout param in a LinearLayout: layout_centerHorizontal
- The given layout_param is not defined for the given layout, meaning it has no effect. This usually happens when you change the parent layout or move view code around without updating the layout params. This will cause useless attribute processing at runtime, and is misleading for others reading the layout so the parameter should be removed.
※ 참고
'Android' 카테고리의 다른 글
Naver Mobile Dynamic Map For Android 안드로이드 네이버 모바일 다이나믹 맵 2 (0) | 2022.02.05 |
---|---|
Naver Mobile Dynamic Map For Android 안드로이드 네이버 모바일 다이나믹 맵 1 (0) | 2022.02.05 |
Remove Action Bar And Status Bar(Fullscreen) 액션바, 상태 표시줄 제거하기(전체화면) (0) | 2022.01.31 |
Handling multi touch event in Android 안드로이드 멀티 터치 이벤트 (0) | 2019.12.08 |
Handling single touch event in Android 안드로이드 싱글 터치 이벤트 (0) | 2019.12.08 |