fix(android): read minSdkVersion from root project (#1960)
This commit is contained in:
parent
71ca0fb787
commit
768092bba7
|
@ -40,7 +40,7 @@ android {
|
|||
compileSdkVersion getExtOrIntegerDefault('compileSdkVersion')
|
||||
buildToolsVersion getExtOrDefault('buildToolsVersion')
|
||||
defaultConfig {
|
||||
minSdkVersion 16
|
||||
minSdkVersion getExtOrIntegerDefault('minSdkVersion')
|
||||
targetSdkVersion getExtOrIntegerDefault('targetSdkVersion')
|
||||
versionCode 1
|
||||
versionName "1.0"
|
||||
|
|
|
@ -2,3 +2,4 @@ ReactNativeWebView_kotlinVersion=1.3.50
|
|||
ReactNativeWebView_compileSdkVersion=29
|
||||
ReactNativeWebView_buildToolsVersion=29.0.3
|
||||
ReactNativeWebView_targetSdkVersion=28
|
||||
ReactNativeWebView_minSdkVersion=16
|
Loading…
Reference in New Issue