Skip to content

Commit

Permalink
Merge pull request #98 from MohamedRejeb/0.5.x
Browse files Browse the repository at this point in the history
Decrease minSdk to 21
  • Loading branch information
MohamedRejeb authored Jun 23, 2024
2 parents ba94486 + 104186a commit aae4c67
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ calf = "0.4.1"
compose-compiler = "1.5.4"
activity-compose = "1.9.0"
navigation-compose = "2.7.7"
android-minSdk = "24"
android-minSdk = "21"
android-compileSdk = "34"
kotlinx-coroutines = "1.8.1"
appcompat = "1.7.0"
Expand Down
10 changes: 5 additions & 5 deletions sample/android/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,21 +25,21 @@ android {
kotlinCompilerExtensionVersion = libs.versions.compose.compiler.get()
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = "11"
jvmTarget = "1.8"
}
packaging {
resources {
excludes += "/META-INF/{AL2.0,LGPL2.1}"
}
}
dependencies {
implementation(project(":sample:common"))
implementation(projects.sample.common)

implementation(libs.activity.compose)
implementation("androidx.appcompat:appcompat:1.6.1")
implementation(libs.appcompat)
}
}

0 comments on commit aae4c67

Please sign in to comment.