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

0

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

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

Browse Popular Code Answers by Language