-1
I was setting up my app to connect to firebase but every time I put in build.grandle(Module: app)
implementation 'com.google.firebase:firebase-analytics:17.2.0'
In my app occurs the error below:
ERROR: Manifest Merger failed : uses-sdk:minSdkVersion 15 cannot be smaller than version 16 declared in library [com.google.firebase:firebase-iid:19.0.0] C: Users Gustavo.Gradle caches Transforms-2 files-2.1 6cfe46f408152b0cf1be5d6c31bb25ab firebase-iid-19.0.0 Androidmanifest.xml as the library Might be using Apis not available in 15 Suggestion: use a compatible library with a minSdk of at Most 15, or Increase this project’s minSdk version to at least 16, or use tools:overrideLibrary="com.google.firebase.iid" to force Usage (may lead to Runtime failures)
Hello @Ustavo, the bug says the package
com.google.firebase:firebase-iid:19.0.0
requires the minSdkVersion >= 16 and your project is configured with the minSdkVersion=15 -- Android Developers #Specify API level requirements– Icaro Martins