Skip to content

Commit 20d0833

Browse files
committed
lowering android example minSdk to 21
1 parent 6ac0fe4 commit 20d0833

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

docs/StardustDocs/topics/setup/SetupAndroid.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,8 @@ dependencies {
3333
}
3434

3535
android {
36-
// Requires Android 0+, i.e. SDK version 26 or higher.
3736
defaultConfig {
38-
minSdk = 26
37+
minSdk = 21
3938
}
4039
// Requires Java 8 or higher
4140
compileOptions {
@@ -68,9 +67,8 @@ dependencies {
6867
}
6968
7069
android {
71-
// Requires Android 0+, i.e. SDK version 26 or higher.
7270
defaultConfig {
73-
minSdk 26
71+
minSdk 21
7472
}
7573
// Requires Java 8 or higher
7674
compileOptions {

examples/android-example/app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ android {
1111

1212
defaultConfig {
1313
applicationId = "com.example.myapplication"
14-
minSdk = 26
14+
minSdk = 21
1515
targetSdk = 36
1616
versionCode = 1
1717
versionName = "1.0"

0 commit comments

Comments
 (0)