Skip to content

Commit 940f570

Browse files
authored
fix(Android): read minSdkVersion from root project (#314)
1 parent 1a91cda commit 940f570

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

android/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ android {
2424
buildToolsVersion rootProject.hasProperty('buildToolsVersion') ? rootProject.buildToolsVersion : DEFAULT_BUILD_TOOLS_VERSION
2525

2626
defaultConfig {
27-
minSdkVersion 15
27+
minSdkVersion safeExtGet('minSdkVersion', 15)
2828
targetSdkVersion rootProject.hasProperty('targetSdkVersion') ? rootProject.targetSdkVersion : DEFAULT_TARGET_SDK_VERSION
2929
versionCode 1
3030
versionName "1.0"

0 commit comments

Comments
 (0)