Skip to content

Commit 474752a

Browse files
committed
Lower minSdk to 23 and align compileSdk to 35 in test projects.
1 parent 3aed5a4 commit 474752a

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

gradle-plugins/compose/src/test/test-projects/misc/androidAppWithResources/appModule/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ android {
99
compileSdk = 35
1010
defaultConfig {
1111
applicationId = "org.example.project"
12-
minSdk = 24
12+
minSdk = 23
1313
targetSdk = 35
1414
versionCode = 1
1515
versionName = "1.0"

gradle-plugins/compose/src/test/test-projects/misc/androidAppWithResources/featureModule/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ kotlin {
1212
androidLibrary {
1313
namespace = "me.sample.feature"
1414
compileSdk = 35
15-
minSdk = 24
15+
minSdk = 23
1616
androidResources.enable = true
1717
}
1818

gradle-plugins/compose/src/test/test-projects/misc/fullTargetsAppWithResources/androidApp/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44

55
android {
66
namespace = "org.company.app.androidApp"
7-
compileSdk = 36
7+
compileSdk = 35
88

99
defaultConfig {
1010
minSdk = 23

gradle-plugins/compose/src/test/test-projects/misc/fullTargetsAppWithResources/sharedUI/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ plugins {
1212
kotlin {
1313
androidLibrary {
1414
namespace = "org.company.app"
15-
compileSdk = 36
15+
compileSdk = 35
1616
minSdk = 23
1717
androidResources.enable = true
1818
}

gradle-plugins/compose/src/test/test-projects/misc/kmpResourcePublication/appModule/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ kotlin {
1111
androidLibrary {
1212
compileSdk = 35
1313
namespace = "me.sample.app"
14-
minSdk = 24
14+
minSdk = 23
1515
androidResources.enable = true
1616
}
1717
jvm()

gradle-plugins/compose/src/test/test-projects/misc/kmpResourcePublication/cmplib/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ kotlin {
2020
androidLibrary {
2121
compileSdk = 35
2222
namespace = "me.sample.library"
23-
minSdk = 24
23+
minSdk = 23
2424
androidResources.enable = true
2525
}
2626
jvm()

gradle-plugins/compose/src/test/test-projects/misc/kmpResourcePublication/featureModule/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ kotlin {
99
androidLibrary {
1010
compileSdk = 35
1111
namespace = "me.sample.feature"
12-
minSdk = 24
12+
minSdk = 23
1313
androidResources.enable = true
1414
}
1515
jvm()

0 commit comments

Comments
 (0)