728x90 반응형 Programming/Flutter2 [Flutter] flutter Admob 연동 (android + ios) flutter 에 admob을 연동하여 banner ad 띄워보기 1. Admob Test 용 Project 생성 admob test를 위한 flutter project를 생성 합니다. $ flutter create admob_test 2. Android 및 iOS 설정에 Admob App ID 추가 App ID는 https://support.google.com/admob/answer/7356431?hl=ko 링크를 통해 확인할 수 있습니다. - Android android/app/src/main/AndroidManifest.xml 에 를 추가하여 App ID를 설정 합니다. print('Ad loaded.'), // Called when an ad request failed. onAdFailedToL.. 2022. 2. 3. [Flutter] Android build error (Module was compiled with an incompatible version of Kotlin. The binary version of its metadata is 1.5.1, expected version is 1.1.15) Android build 시 아래 에러가 발생하면 kotlin 최신 버전으로 업데이트한다. Module was compiled with an incompatible version of Kotlin. The binary version of its metadata is 1.5.1, expected version is 1.1.15 kotlin version 은 android/build.gradle 에서 변경이 가능하다. buildscript { ext.kotlin_version = '1.6.10' // 최신 버전으로 업데이트 repositories { google() mavenCentral() } dependencies { classpath 'com.android.tools.build:gradle:4.1.0'.. 2022. 1. 13. 이전 1 다음 728x90 반응형