336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
build.gradle 파일 수정이 필요함.
* DexOptions.incremental' is obsolete and will be removed at the end of 2018.
출처 : https://stackoverflow.com/questions/37522668/android-dexoptions-incremental-property-is-deprecated/37537214
경고 :이 android.dexOptions.incremental속성은 사용되지 않으며 빌드 프로세스에는 영향을주지 않습니다.
dexOptions {
incremental true
jumboMode = true
}
dexOptions 제거
=====================
* compile' is obsolete and has been replaced with 'implementation' and 'api'.
출처 : https://sikeeoh.github.io/2017/08/28/implementation-vs-api-android-gradle-plugin-3/
모든 compile을 implementation으로 바꾸고 프로젝트를 빌드해보세요.
'Android Studio' 카테고리의 다른 글
(Android Studio) Cannot read property 'getElementsByTagName' of null 에러 (0) | 2019.03.16 |
---|---|
(Android Studio) PC 바꾼 후 안드로이드 앱 릴리즈 에러1 (0) | 2018.09.07 |
(Android Studio) aapt.exe 오류 해결방법 (0) | 2018.08.11 |
(Android Studio) This app has been built with an incorrect configuration. 해결법 (0) | 2018.07.21 |
(Android Studio) 오레오 8.0 판올림 예상 삽질 (0) | 2018.05.26 |