Skip to content

Commit 0c175a8

Browse files
committed
Fix touchlab#302 - Update ktor and minimum deployment target of the iOS app
This will ensure the iOS app can be built.
1 parent f577371 commit 0c175a8

14 files changed

+22
-18
lines changed

gradle/libs.versions.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ junit = "4.13.2"
2424

2525
coroutines = "1.7.0"
2626
kotlinx-datetime = "0.4.0"
27-
ktor = "2.3.1"
27+
ktor = "2.3.2"
2828

2929
robolectric = "4.10.3"
3030

ios/KaMPKitiOS.xcodeproj/project.pbxproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,7 @@
464464
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
465465
GCC_WARN_UNUSED_FUNCTION = YES;
466466
GCC_WARN_UNUSED_VARIABLE = YES;
467-
IPHONEOS_DEPLOYMENT_TARGET = 13.2;
467+
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
468468
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
469469
MTL_FAST_MATH = YES;
470470
ONLY_ACTIVE_ARCH = YES;
@@ -522,7 +522,7 @@
522522
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
523523
GCC_WARN_UNUSED_FUNCTION = YES;
524524
GCC_WARN_UNUSED_VARIABLE = YES;
525-
IPHONEOS_DEPLOYMENT_TARGET = 13.2;
525+
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
526526
MTL_ENABLE_DEBUG_INFO = NO;
527527
MTL_FAST_MATH = YES;
528528
ONLY_ACTIVE_ARCH = YES;
@@ -596,7 +596,7 @@
596596
BUNDLE_LOADER = "$(TEST_HOST)";
597597
CODE_SIGN_STYLE = Automatic;
598598
INFOPLIST_FILE = KaMPKitiOSTests/Info.plist;
599-
IPHONEOS_DEPLOYMENT_TARGET = 13.2;
599+
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
600600
LD_RUNPATH_SEARCH_PATHS = (
601601
"$(inherited)",
602602
"@executable_path/Frameworks",
@@ -617,7 +617,7 @@
617617
BUNDLE_LOADER = "$(TEST_HOST)";
618618
CODE_SIGN_STYLE = Automatic;
619619
INFOPLIST_FILE = KaMPKitiOSTests/Info.plist;
620-
IPHONEOS_DEPLOYMENT_TARGET = 13.2;
620+
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
621621
LD_RUNPATH_SEARCH_PATHS = (
622622
"$(inherited)",
623623
"@executable_path/Frameworks",

ios/Podfile.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ EXTERNAL SOURCES:
1515
:path: "../shared/"
1616

1717
SPEC CHECKSUMS:
18-
shared: 153082a09d0db819a966647739a6809fed9eff56
18+
shared: 2f802391954274f6b79e59e6941e2cc7b18b56b1
1919
SwiftLint: c585ebd615d9520d7fbdbe151f527977b0534f1e
2020

2121
PODFILE CHECKSUM: d5a73f50a47bad1893e4fbf8978f1bef946ebdf6
2222

23-
COCOAPODS: 1.11.3
23+
COCOAPODS: 1.12.1

ios/Pods/Local Podspecs/shared.podspec.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ios/Pods/Manifest.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ios/Pods/Pods.xcodeproj/project.pbxproj

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ios/Pods/Target Support Files/Pods-KaMPKitiOS/Pods-KaMPKitiOS-Info.plist

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ios/Pods/Target Support Files/Pods-KaMPKitiOS/Pods-KaMPKitiOS-frameworks.sh

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ios/Pods/Target Support Files/SwiftLint/SwiftLint.debug.xcconfig

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ios/Pods/Target Support Files/SwiftLint/SwiftLint.release.xcconfig

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ios/Pods/Target Support Files/shared/shared.debug.xcconfig

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ios/Pods/Target Support Files/shared/shared.release.xcconfig

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

shared/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ kotlin {
101101
linkerOpts("-lsqlite3")
102102
export(libs.touchlab.kermit.simple)
103103
}
104-
ios.deploymentTarget = "12.4"
104+
ios.deploymentTarget = "14.0"
105105
podfile = project.file("../ios/Podfile")
106106
}
107107
}

shared/shared.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Pod::Spec.new do |spec|
88
spec.summary = 'Common library for the KaMP starter kit'
99
spec.vendored_frameworks = 'build/cocoapods/framework/shared.framework'
1010
spec.libraries = 'c++'
11-
spec.ios.deployment_target = '12.4'
11+
spec.ios.deployment_target = '14.0'
1212

1313

1414
spec.pod_target_xcconfig = {

0 commit comments

Comments
 (0)