Simple&Natural
[Android] Admob 오류 종류 본문
Ad failed to load : 0
public static final int ERROR_CODE_INTERNAL_ERROR
Something happened internally; for instance, an invalid response was received from the ad server.
Constant Value: 0
Ad failed to load : 1
public static final int ERROR_CODE_INVALID_REQUEST
The ad request was invalid; for instance, the ad unit ID was incorrect.
Constant Value: 1
Ad failed to load : 2
public static final int ERROR_CODE_NETWORK_ERROR
The ad request was unsuccessful due to network connectivity.
Constant Value: 2
Ad failed to load : 3
public static final int ERROR_CODE_NO_FILL
The ad request was successful, but no ad was returned due to lack of ad inventory.
Constant Value: 3
특히 3번의 원인에는 다음과 같은 것들이 있음
- Google AdMod에 결제 수단을 추가하는 것을 잊어 버림
- 앱이 디버깅 모드이고 릴리스 모드가 아닌 경우
- 코드는 정확하지만 서버에 대한 요청 량이 적기 때문에 광고가 표시되지 않습니다.
- Google 콘솔에서 광고 포함을 사용하는 것을 잊지 마십시오
기타
- This request is sent from a test device.
- Use RequestConfiguration.Builder().setTestDeviceIds(Arrays.asList("63DA9D9E2512D97E1CDE43513F7344AC") to get test ads on this device
참고자료
구글 애드몹 공식문서
'안드로이드(Android) > 기타' 카테고리의 다른 글
[Android] BottomNavigationView Text Size 변경 방법 (2) | 2020.10.10 |
---|---|
[Android] BottomNavigationView + Nav Component 연동 시 유의사항 정리 (0) | 2020.10.10 |
[Android] 애드몹(Admob) 연동하기 (0) | 2020.10.08 |
[Android] Retrofit Field 사용 시 Encoding 문제 (0) | 2020.10.07 |
[Android] Retrofit + Moshi 를 이용한 Json 데이터 받아오기 (0) | 2020.10.07 |