3

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.

Umair
  • 6,366
  • 15
  • 42
  • 50
Basavaraj
  • 306
  • 2
  • 8

1 Answers1

17

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

Nithin
  • 932
  • 7
  • 14