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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ find [here](./gradle/libs.versions.toml#L5).

### Installation

The minimum supported Android SDK is 21 (Android 5.0), which is a requirement of Jetpack Compose.
The minimum supported Android SDK is 23 (Android 6.0), which is a requirement of Jetpack Compose.
Add Reveal as a dependency to your project. It's available on Maven Central.

```kotlin
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,6 @@ tasks.withType<DependencyUpdatesTask> {
}
}

val androidMinSdk by extra { 21 }
val androidMinSdk by extra { 23 }
val androidTargetSdk by extra { 36 }
val androidCompileSdk by extra { 36 }
4 changes: 2 additions & 2 deletions demo-app/shared/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ kotlin {

android {
namespace = "com.svenjacobs.reveal.demo"
compileSdk = 34
compileSdk = 36
defaultConfig {
minSdk = 21
minSdk = 23
}
}
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[versions]
android-gradle-plugin = "8.13.1"
androidx-activity = "1.12.1"
androidx-compose-bom = "2025.11.01" # https://developer.android.com/jetpack/compose/bom/bom-mapping
androidx-compose-bom = "2025.12.00" # https://developer.android.com/jetpack/compose/bom/bom-mapping
jetbrains-compose = "1.8.2"
kotlin = "2.2.21"

Expand Down