Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions android-tests/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ plugins {
alias(libs.plugins.compose.compiler)
}

val androidMinSdk: Int by rootProject.extra
val androidTargetSdk: Int by rootProject.extra
val androidCompileSdk: Int by rootProject.extra

Expand All @@ -22,7 +21,7 @@ android {

defaultConfig {
applicationId = "com.svenjacobs.reveal.android.tests"
minSdk = androidMinSdk
minSdk = 23
targetSdk = androidTargetSdk
versionCode = 1
versionName = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion demo-app/androidApp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ android {
compileSdk = 36
defaultConfig {
applicationId = "com.svenjacobs.reveal.demo.android"
minSdk = 21
minSdk = 23
targetSdk = 36
versionCode = 1
versionName = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[versions]
android-gradle-plugin = "8.13.1"
androidx-activity = "1.11.0"
androidx-activity = "1.12.0"
androidx-compose-bom = "2025.11.01" # https://developer.android.com/jetpack/compose/bom/bom-mapping
jetbrains-compose = "1.8.2"
kotlin = "2.2.21"
Expand Down
Loading