336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
혹시 Release로 빌드시 아래와 같은 에러가 보인다면.
Could not find com.android.tools.lint:lint-gradle
그럼 build.gradle에 아래 부분이 추가 되어 있는지 확인 해보세요.
allprojects {
repositories {
google()
jcenter()
}
}
저 오류는 google() repositories가 빠질 경우 발생 한다고 하네요.
https://stackoverflow.com/a/47127602
참고 하세요.
'나의 플랫폼 > 안드로이드' 카테고리의 다른 글
[Kotlin] View Height, Width 변경 (0) | 2018.08.21 |
---|---|
[Android] Unit Test, Android UI Test 폴더 관리 (0) | 2018.05.18 |
[Android] adb shell 에서 문자 보내기 (0) | 2018.04.30 |
[Android][lombok]Annotation processors must be explicitly declared now (0) | 2018.04.27 |
[Android] Error:com.android.tools.aapt2.Aapt2Exception: AAPT2 error: check logs for details (0) | 2018.04.19 |