Answers for "Manifest merger failed : uses-sdk:minSdkVersion 16 cannot be smaller than version 19 declared in library"

1

uses-sdk:minSdkVersion 16 cannot be smaller than version 19 declared in library

Set the minSdkVersion in android/app/build.gradle:
Replace with the desired version number

android {
    defaultConfig {
        minSdkVersion 19
    }
}
Posted by: Guest on August-13-2021
0

Manifest merger failed : uses-sdk:minSdkVersion 16 cannot be smaller than version 19 declared in library

minSdkVersion 19
Posted by: Guest on March-03-2022

Code answers related to "Manifest merger failed : uses-sdk:minSdkVersion 16 cannot be smaller than version 19 declared in library"

Browse Popular Code Answers by Language