Skip to content

Commit

Permalink
Updates Kotlin version to 1.9.20
Browse files Browse the repository at this point in the history
  • Loading branch information
Tweener committed Nov 9, 2023
1 parent ff52dc1 commit f29f15d
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
4 changes: 2 additions & 2 deletions buildSrc/src/main/kotlin/Dependencies.kt
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ object Dependencies {
val javaCompatibility = JavaVersion.VERSION_17
}

const val kotlin = "1.9.10"
const val kotlin = "1.9.20"
const val gradle = "8.1.2"
const val coroutines = "1.7.3"
const val kodein = "7.20.2"
Expand All @@ -55,7 +55,7 @@ object Dependencies {
}

object Android {
const val composeCompilerExtension = "1.5.3" // See mapping with Kotlin version here: https://developer.android.com/jetpack/androidx/releases/compose-kotlin
const val composeCompilerExtension = "1.5.4" // See mapping with Kotlin version here: https://developer.android.com/jetpack/androidx/releases/compose-kotlin
const val compose = "1.6.0-alpha08"
const val activityCompose = "1.8.0"
const val navigationCompose = "2.7.4"
Expand Down
2 changes: 1 addition & 1 deletion iosApp/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ SPEC CHECKSUMS:
shared: 2d3b24a8fe27b7d9e65b8d075a9672fbc6a1aa10
Swinject: 893c9a543000ac2f10ee4cbaf0933c6992c935d5

PODFILE CHECKSUM: c18650f0ecff149cad1798d08da0aa97bd70ea03
PODFILE CHECKSUM: ed0bec20e17bcc7f63b403dffc70fa7271c37d73

COCOAPODS: 1.12.1
2 changes: 1 addition & 1 deletion iosApp/Pods/Manifest.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions shared/MyProjectCocoaPod.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,17 @@ Pod::Spec.new do |spec|
spec.ios.deployment_target = '14.1'


if !Dir.exist?('build/cocoapods/framework/shared.framework') || Dir.empty?('build/cocoapods/framework/shared.framework')
raise "
Kotlin framework 'shared' doesn't exist yet, so a proper Xcode project can't be generated.
'pod install' should be executed after running ':generateDummyFramework' Gradle task:
./gradlew :shared:generateDummyFramework
Alternatively, proper pod installation is performed during Gradle sync in the IDE (if Podfile location is set)"
end

spec.pod_target_xcconfig = {
'KOTLIN_PROJECT_PATH' => ':shared',
'PRODUCT_MODULE_NAME' => 'shared',
Expand Down

0 comments on commit f29f15d

Please sign in to comment.