Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
Ridvan Ozcan authored and Ridvan Ozcan committed Apr 22, 2024
1 parent 81d88a5 commit 2ca3298
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 25 deletions.
7 changes: 1 addition & 6 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,7 @@ android {
compose = true
}
composeOptions {
kotlinCompilerExtensionVersion = "1.5.12"
}
packaging {
resources {
excludes += "/META-INF/{AL2.0,LGPL2.1}"
}
kotlinCompilerExtensionVersion = "1.4.8"
}
}

Expand Down
15 changes: 6 additions & 9 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
[versions]
agp = "8.3.2"
kotlin = "1.9.23"
coreKtx = "1.13.0"
agp = "7.3.0"
kotlin = "1.8.22"
coreKtx = "1.12.0"
junit = "4.13.2"
junitVersion = "1.1.5"
espressoCore = "3.5.1"
lifecycleRuntimeKtx = "2.7.0"
activityCompose = "1.9.0"
composeBom = "2024.04.01"
lifecycleRuntimeKtx = "2.6.2"
activityCompose = "1.8.1"
composeBom = "2023.08.00"
appcompat = "1.6.1"
material = "1.11.0"
pandaVersion = "1.0.1"

[libraries]
androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
Expand All @@ -29,8 +28,6 @@ androidx-ui-test-junit4 = { group = "androidx.compose.ui", name = "ui-test-junit
androidx-material3 = { group = "androidx.compose.material3", name = "material3" }
androidx-appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" }
material = { group = "com.google.android.material", name = "material", version.ref = "material" }
pandaLib = { group = "com.github.panda", name = "pandaLib", version.ref = "pandaVersion" }
panda = { group = "com.github.ridvanozcan", name = "pandaLib", version.ref = "pandaVersion" }

[plugins]
androidApplication = { id = "com.android.application", version.ref = "agp" }
Expand Down
16 changes: 6 additions & 10 deletions panda/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ android {
compileSdk = 34

defaultConfig {
minSdk = 24
minSdk = 23

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables {
Expand All @@ -29,19 +29,17 @@ android {
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = "1.8"
jvmTarget = JavaVersion.VERSION_17.toString()
}

buildFeatures {
compose = true
}

composeOptions {
kotlinCompilerExtensionVersion = "1.5.12"
kotlinCompilerExtensionVersion = "1.4.8"
}
}

Expand All @@ -59,8 +57,6 @@ dependencies {
testImplementation(libs.junit)
androidTestImplementation(libs.androidx.junit)
androidTestImplementation(libs.androidx.espresso.core)

implementation(libs.pandaLib)
}

afterEvaluate {
Expand All @@ -69,7 +65,7 @@ afterEvaluate {
register<MavenPublication>("release") {
groupId = "com.github.ridvanozcan"
artifactId = "pandatooltip"
version = "1.0.4"
version = "1.0.5"

from(components["release"])
}
Expand Down

0 comments on commit 2ca3298

Please sign in to comment.