Skip to content

Commit

Permalink
Reset min sdk to 24
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-ramotar committed Jul 7, 2024
1 parent 2da9d8f commit 96b2d0c
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@

#### Android
```kotlin
implementation "org.mobilenativefoundation.store:store5:5.1.0-alpha03"
implementation "org.mobilenativefoundation.store:store5:5.1.0-alpha04"
```

#### Multiplatform (Common, JVM, Native, JS)

```kotlin
commonMain {
dependencies {
implementation("org.mobilenativefoundation.store:store5:5.1.0-alpha03")
implementation("org.mobilenativefoundation.store:store5:5.1.0-alpha04")
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ org.gradle.jvmargs=-XX:MaxMetaspaceSize=2G

# POM file
GROUP=org.mobilenativefoundation.store
VERSION_NAME=5.1.0-alpha03
VERSION_NAME=5.1.0-alpha04
POM_PACKAGING=pom
POM_DESCRIPTION = Store5 is a Kotlin Multiplatform network-resilient repository layer

Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
androidMinSdk = "31"
androidMinSdk = "24"
androidCompileSdk = "33"
androidGradlePlugin = "7.4.2"
androidTargetSdk = "33"
Expand All @@ -21,7 +21,7 @@ testCore = "1.5.0"
kmmBridge = "0.3.2"
ktlint = "0.39.0"
kover = "0.6.0"
store = "5.1.0-alpha03"
store = "5.1.0-alpha04"
truth = "1.1.3"
binary-compatibility-validator = "0.15.0-Beta.2"

Expand Down
2 changes: 1 addition & 1 deletion paging/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ android {
compileSdk = 34

defaultConfig {
minSdk = 31
minSdk = 24
targetSdk = 34
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class AndroidConventionPlugin : Plugin<Project> {
compileSdk = 34

defaultConfig {
minSdk = 31
minSdk = 24
targetSdk = 34
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -170,9 +170,9 @@ private fun Project.java(action: JavaPluginExtension.() -> Unit) = extensions.co

object Versions {
const val COMPILE_SDK = 34
const val MIN_SDK = 31
const val MIN_SDK = 24
const val TARGET_SDK = 34
const val STORE = "5.1.0-alpha03"
const val STORE = "5.1.0-alpha04"
}


Expand Down

0 comments on commit 96b2d0c

Please sign in to comment.