File tree Expand file tree Collapse file tree 4 files changed +26
-14
lines changed Expand file tree Collapse file tree 4 files changed +26
-14
lines changed Original file line number Diff line number Diff line change 1+ import org.jetbrains.kotlin.gradle.dsl.JvmTarget
2+
13plugins {
24 alias(libs.plugins.android)
35 alias(libs.plugins.kotlin)
@@ -25,8 +27,12 @@ android {
2527 targetCompatibility = JavaVersion .VERSION_17
2628 }
2729
28- kotlinOptions {
29- jvmTarget = libs.versions.jvm.target.get()
30+ kotlin {
31+ target {
32+ compilerOptions {
33+ jvmTarget = JvmTarget .JVM_17
34+ }
35+ }
3036 }
3137
3238 buildFeatures {
@@ -44,6 +50,7 @@ dependencies {
4450
4551 // timer flow
4652 implementation(projects.timerFlow)
53+ // implementation("com.github.raheemadamboev:timer-flow:1.0.5")
4754
4855 // compose
4956 implementation(platform(libs.compose))
Original file line number Diff line number Diff line change 11[versions ]
22
3- compose = " 2025.05.01 "
3+ compose = " 2025.07.00 "
44compose-activity = " 1.10.1"
5- compose-lifecycle = " 2.9.0 "
5+ compose-lifecycle = " 2.9.2 "
66core = " 1.16.0"
77coroutines = " 1.10.2"
88
9- android = " 8.10.1 "
10- kotlin = " 2.1.21 "
9+ android = " 8.12.0 "
10+ kotlin = " 2.2.0 "
1111
1212sdk-min = " 21"
13- sdk-compile = " 35"
14- sdk-target = " 35"
15- jvm-target = " 17"
13+ sdk-compile = " 36"
14+ sdk-target = " 36"
1615
1716[libraries ]
1817
Original file line number Diff line number Diff line change 1- # Mon Jun 02 01:45:20 UZT 2025
1+ # Sun Aug 03 14:50:31 UZT 2025
22distributionBase =GRADLE_USER_HOME
33distributionPath =wrapper/dists
4- distributionUrl =https\://services.gradle.org/distributions/gradle-8.14.1 -bin.zip
4+ distributionUrl =https\://services.gradle.org/distributions/gradle-9.0.0 -bin.zip
55zipStoreBase =GRADLE_USER_HOME
66zipStorePath =wrapper/dists
Original file line number Diff line number Diff line change 1+ import org.jetbrains.kotlin.gradle.dsl.JvmTarget
2+
13plugins {
24 alias(libs.plugins.library)
35 alias(libs.plugins.kotlin)
@@ -21,8 +23,12 @@ android {
2123 targetCompatibility = JavaVersion .VERSION_17
2224 }
2325
24- kotlinOptions {
25- jvmTarget = libs.versions.jvm.target.get()
26+ kotlin {
27+ target {
28+ compilerOptions {
29+ jvmTarget = JvmTarget .JVM_17
30+ }
31+ }
2632 }
2733
2834 packaging {
@@ -51,7 +57,7 @@ publishing {
5157 register<MavenPublication >(" release" ) {
5258 groupId = " com.github.raheemadamboev"
5359 artifactId = " timer-flow"
54- version = " 1.0.4 "
60+ version = " 1.0.5 "
5561
5662 afterEvaluate {
5763 from(components[" release" ])
You can’t perform that action at this time.
0 commit comments