Skip to content

Commit

Permalink
Merge pull request #5 from hasancse91/gradle-dependency-updated
Browse files Browse the repository at this point in the history
Gradle dependency updated.
  • Loading branch information
hasancse91 authored Jan 4, 2025
2 parents 388a994 + d17cdb1 commit 3a9cc60
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 12 deletions.
13 changes: 8 additions & 5 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ plugins {

android {
namespace = "com.hellohasan.bongabdosample"
compileSdk = 34
compileSdk = 35

defaultConfig {
applicationId = "com.hellohasan.bongabdosample"
minSdk = 24
targetSdk = 34
targetSdk = 35
versionCode = 1
versionName = "1.0"

Expand All @@ -31,11 +31,13 @@ android {
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17

isCoreLibraryDesugaringEnabled = true
}
kotlinOptions {
jvmTarget = "1.8"
jvmTarget = "17"
}
buildFeatures {
compose = true
Expand Down Expand Up @@ -71,4 +73,5 @@ dependencies {
androidTestImplementation(libs.androidx.ui.test.junit4)
debugImplementation(libs.androidx.ui.tooling)
debugImplementation(libs.androidx.ui.test.manifest)
coreLibraryDesugaring(libs.desugar.jdk.libs)
}
2 changes: 1 addition & 1 deletion bongabdo/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ publishing {
create<MavenPublication>("maven") {
groupId = "com.github.hasancse91"
artifactId = "bongabdo"
version = "1.0.3"
version = "1.0.4"
from(components["kotlin"])
}
}
Expand Down
14 changes: 8 additions & 6 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,21 +1,23 @@
[versions]
agp = "8.7.1"
agp = "8.7.3"
desugarJdkLibs = "2.1.4"
kotlin = "2.0.21"
coreKtx = "1.13.1"
coreKtx = "1.15.0"
junitJupiter = "5.10.3"
junitVersion = "1.2.1"
espressoCore = "3.6.1"
kotlinxDatetime = "0.6.1"
lifecycleRuntimeKtx = "2.8.6"
lifecycleRuntimeKtx = "2.8.7"
activityCompose = "1.9.3"
composeBom = "2024.10.00"
composeBom = "2024.12.01"
jetbrainsKotlinJvm = "1.9.25"
materialIconsExtended = "1.7.4"
navigationCompose = "2.8.3"
materialIconsExtended = "1.7.6"
navigationCompose = "2.8.5"
appcompat = "1.7.0"

[libraries]
androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
desugar-jdk-libs = { module = "com.android.tools:desugar_jdk_libs", version.ref = "desugarJdkLibs" }
junit-jupiter-api = { group = "org.junit.jupiter", name = "junit-jupiter-api", version.ref = "junitJupiter" }
junit-jupiter-engine = { group = "org.junit.jupiter", name = "junit-jupiter-engine", version.ref = "junitJupiter" }
junit-jupiter-params = { group = "org.junit.jupiter", name = "junit-jupiter-params", version.ref = "junitJupiter" }
Expand Down

0 comments on commit 3a9cc60

Please sign in to comment.