uses-sdk:minSdkVersion 16 cannot be smaller than version 19 declared in library [:react-native-hms-site]

Viewed 7799

While integrating react-native-hms-site sdk in the Android studio, build failed due to below error

Manifest merger failed : uses-sdk:minSdkVersion 16 cannot be smaller than version 19 declared in library [:react-native-hms-site]

library might be using APIs not available in 16.

1 Answers

Change minSdkVersion to 19 in the project build.gradle file "minSdkVersion = 19"

Related