こんにちは!本記事では、下図のようにFirabaseを実装した後出てくるエラーについて説明します。
主なエラー文章は下記の通り。minSdkVersionを19以上にしてねって意味です。
uses-sdk:minSdkVersion 16 cannot be smaller than version 19 declared in library [com.google.firebase: firebase-analytics:20.0.2]
Suggestion: use a compatible library with a minSdk of at most 16,
or increase this project’s minSdk version to at least 19,
or use tools: overrideLibrary=”com.google.firebase.firebase_analytics” to force usage
目次
対処方法
minSdk versionを上げる
android>app>build.gradleを開きます。
defaultConfig{}内に、minSdkVersionというところがあります。ここを手動で23など19より大きい値にしておきましょう。
以上をすることで、無事にデバッグできました。
コメント