안드로이드 애드몹 보상형(리워드) 광고 google admob 버젼 20.2.0 build.gradle(Project) allprojects { repositories { google() mavenCentral() jcenter() // Warning: this repository is going to shut down soon } } build.gradle (Module) implementation 'com.google.android.gms:play-services-ads:20.2.0' 추가하기 Cannot fit requested classes in a single dex file (# methods: 66104 > 65536) 에러 메시지 수정방법 minSdkVersion 16의 버전을 하나씩 올려..
안드로이드 전면광고 google admob version 20.1.0 build.gradle (project) allprojects { repositories { google() mavenCentral() jcenter() // Warning: this repository is going to shut down soon } } build.gradle (Module) implementation 'com.google.android.gms:play-services-ads:20.1.0' 를 추가해주세요. 그리고 Sync now 해주세요. dependencies { implementation 'androidx.appcompat:appcompat:1.3.0' implementation 'com.google.andr..