File tree Expand file tree Collapse file tree 5 files changed +19
-15
lines changed
Expand file tree Collapse file tree 5 files changed +19
-15
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ kotlin.experimental.tryK2=true
1212# MPP
1313kotlin.mpp.enableCInteropCommonization =true
1414kotlin.mpp.androidSourceSetLayoutVersion =2
15+ kotlin.mpp.applyDefaultHierarchyTemplate =false
1516
1617# Compose
1718org.jetbrains.compose.experimental.uikit.enabled =true
@@ -21,7 +22,7 @@ kotlin.native.cacheKind=none
2122android.useAndroidX =true
2223android.nonTransitiveRClass =true
2324android.nonFinalResIds =true
24- android.defaults.buildfeatures.buildconfig =true
25+ android.buildFeatures.buildConfig =true
2526
2627# gradle-nexus-staging-plugin
2728gnsp.disableApplyOnlyOnRootProjectEnforcement =true
Original file line number Diff line number Diff line change 11[versions ]
22kronos = " 0.0.1"
3+ compileSdk = " 35"
4+ targetSdk = " 35"
5+ minSdk = " 21"
36lyft-kronos = " 0.0.1-alpha11"
4- kotlin = " 2.0.21 "
5- agp = " 8.7.2 "
7+ kotlin = " 2.1.10 "
8+ agp = " 8.8.1 "
69compose = " 1.7.1"
710androidx-appcompat = " 1.7.0"
8- androidx-activityCompose = " 1.9.3 "
11+ androidx-activityCompose = " 1.10.0 "
912androidx-test = " 1.6.1"
10- compose-uitooling = " 1.7.5 "
13+ compose-uitooling = " 1.7.8 "
1114napier = " 2.7.1"
12- kotlinx-coroutines = " 1.9.0 "
15+ kotlinx-coroutines = " 1.10.1 "
1316kotlinx-datetime = " 0.6.1"
1417swift-klib = " 0.6.4"
1518
Original file line number Diff line number Diff line change 1- # Sun Nov 24 21:32:10 GET 2024
1+ # Sat Feb 15 22:48:25 GET 2025
22distributionBase =GRADLE_USER_HOME
33distributionPath =wrapper/dists
4- distributionUrl =https\://services.gradle.org/distributions/gradle-8.11 .1-all .zip
4+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.12 .1-bin .zip
55networkTimeout =10000
66validateDistributionUrl =true
77zipStoreBase =GRADLE_USER_HOME
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ version = libs.versions.kronos.get()
1010kotlin {
1111 jvmToolchain(11 )
1212 jvm()
13- android {
13+ androidTarget {
1414 publishLibraryVariants(" release" , " debug" )
1515 }
1616 listOf (
@@ -77,9 +77,9 @@ kotlin {
7777
7878android {
7979 namespace = " com.softartdev.kronos"
80- compileSdk = 34
80+ compileSdk = libs.versions.compileSdk.get().toInt()
8181 defaultConfig {
82- minSdk = 21
82+ minSdk = libs.versions.minSdk.get().toInt()
8383 }
8484 compileOptions {
8585 sourceCompatibility = JavaVersion .VERSION_11
Original file line number Diff line number Diff line change @@ -78,11 +78,11 @@ kotlin {
7878
7979android {
8080 namespace = " com.softartdev.kronos.sample"
81- compileSdk = 34
81+ compileSdk = libs.versions.compileSdk.get().toInt()
8282
8383 defaultConfig {
84- minSdk = 21
85- targetSdk = 34
84+ minSdk = libs.versions.minSdk.get().toInt()
85+ targetSdk = libs.versions.targetSdk.get().toInt()
8686
8787 applicationId = " com.softartdev.kronos.sample"
8888 versionCode = 1
@@ -100,7 +100,7 @@ android {
100100 sourceCompatibility = JavaVersion .VERSION_11
101101 targetCompatibility = JavaVersion .VERSION_11
102102 }
103- packagingOptions {
103+ packaging {
104104 resources.excludes.add(" META-INF/**" )
105105 }
106106}
You can’t perform that action at this time.
0 commit comments