728x90
Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
deprecated API가 있다는 노트이며 -Xlint:deprecation옵션을 설정하면 자세한 이유를 확인할 수 있다.
project/android/build.gradle
allprojects {
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
}
repositories {
google()
jcenter()
}
}
플러터에서 pub.dev/packages/google_mobile_ads를 사용하는데 최신 소스는 InterstitialAd가 제거되어 워닝이 발생되었다.
pub.dartlang.org/google_mobile_ads-0.12
FlutterInterstitialAd.java:70: warning: [deprecation]
43 warnings
구글 Release Notes
VersionRelease DateNotes
| 20.1.0 | 2021‑04‑29 |
|
| 20.0.0 | 2021‑04‑05 | This release is a MAJOR version update with several breaking changes. See the prepare for SDK v20 guide for more information on how to migrate.
|
Interstitial API가 제거 되어 발생.
반응형
'android' 카테고리의 다른 글
| [Flutter] 시스템 디스플레이 모드(라이트, 다크)가 변경 되었을때 상태바 색상 변경 방법. (0) | 2021.05.30 |
|---|---|
| [Flutter] 상단 상태바, 시스템 네비게이션바 색상 변경. (0) | 2021.05.30 |
| [Flutter] 교육 앱, 만 13세 미만 아동을 주요 대상으로 제작된 앱 광고 설정. (0) | 2021.05.30 |
| Android Studio, Kotlin Gradle and IDE plugins versions are different (0) | 2021.05.29 |
| Android Studio(macOS), Filesystem Case-Sensitivity Mismatch (0) | 2021.05.29 |