Skip to content
This repository was archived by the owner on Dec 9, 2025. It is now read-only.

Commit 0db2acb

Browse files
authored
fix: set minSdkVersion 16, close #1
1 parent 90d1896 commit 0db2acb

4 files changed

Lines changed: 8 additions & 3 deletions

File tree

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ android {
2929
compileSdkVersion getExtOrIntegerDefault('compileSdkVersion')
3030
buildToolsVersion getExtOrDefault('buildToolsVersion')
3131
defaultConfig {
32-
minSdkVersion 21
32+
minSdkVersion 16
3333
targetSdkVersion getExtOrIntegerDefault('targetSdkVersion')
3434
versionCode 1
3535
versionName "1.0"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
],
2222
"scripts": {
2323
"test": "jest",
24-
"typescript": "tsc --noEmit",
24+
"typescript": "tsc --noEmit -p ./tsconfig.build",
2525
"lint": "eslint \"**/*.{js,ts,tsx}\"",
2626
"prepare": "bob build",
2727
"release": "release-it",

tsconfig.build.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"extends": "./tsconfig.json",
3+
"exclude": ["./example"]
4+
}

tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
{
23
"compilerOptions": {
34
"baseUrl": ".",
@@ -23,5 +24,5 @@
2324
"skipLibCheck": true,
2425
"strict": true,
2526
"target": "esnext"
26-
}
27+
},
2728
}

0 commit comments

Comments
 (0)