Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
TonnyL committed Jan 14, 2024
1 parent 044c227 commit a05f2ba
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 15 deletions.
6 changes: 3 additions & 3 deletions common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ version = "1.0-SNAPSHOT"
kotlin {
targetHierarchy.default()

android()
androidTarget()
iosX64()
iosArm64()
iosSimulatorArm64()
Expand All @@ -35,8 +35,6 @@ kotlin {
baseName = "common"
isStatic = true
}
extraSpecAttributes["resources"] =
"['src/commonMain/resources/**', 'src/iosMain/resources/**']"
}

jvm("desktop") {
Expand Down Expand Up @@ -108,6 +106,8 @@ kotlin {
android {
compileSdk = Versions.compileSdk
sourceSets["main"].manifest.srcFile("src/androidMain/AndroidManifest.xml")
sourceSets["main"].res.srcDirs("src/androidMain/res")
sourceSets["main"].resources.srcDirs("src/commonMain/resources")
defaultConfig {
minSdk = Versions.minSdk
targetSdk = Versions.targetSdk
Expand Down
1 change: 0 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ xcodeproj=iOS
org.jetbrains.compose.experimental.jscanvas.enabled=true
org.jetbrains.compose.experimental.macos.enabled=true
org.jetbrains.compose.experimental.uikit.enabled=true
kotlin.native.cacheKind=none
kotlin.native.cocoapods.generate.wrapper=true
kotlin.native.useEmbeddableCompilerJar=true
kotlin.native.cacheOrchestration=gradle
Expand Down
20 changes: 10 additions & 10 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
[versions]
androidGradlePlugin = "8.1.0"
androidGradlePlugin = "8.1.1"
componentsResources = "1.3.0"
kotlin = "1.9.0"
compose = "1.5.0-beta02"
kotlin = "1.9.20-Beta"
compose = "1.5.10-dev1212"
apollo = "4.0.0-alpha.3"
junit4 = "4.13.2"
androidxAppCompat = "1.7.0-alpha03"
androidxTestExt = "1.1.5"
androidxEspresso = "3.5.1"
androidxLifecycle = "2.6.1"
androidxLifecycle = "2.6.2"
androidxActivityCompose = "1.7.2"
androidxNavigationCompose = "2.7.0"
androidxNavigationCompose = "2.7.3"
spotless = "6.18.0"
kotlinDateTime = "0.4.0"
pagingCompose = "3.2.0"
kotlinDateTime = "0.4.1"
pagingCompose = "3.2.1"
ktor = "2.2.4"
buildKonfig = "0.13.3"
accompanist = "0.31.6-rc"
buildKonfig = "0.14.0"
accompanist = "0.33.2-alpha"
mdc = "1.9.0"
realm = "1.8.0"
realm = "1.11.1"

[libraries]
androidx-appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "androidxAppCompat" }
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-rc-3-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-rc-3-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down

0 comments on commit a05f2ba

Please sign in to comment.