Skip to content

Commit 8f4d2a5

Browse files
committed
Update deploy version
1 parent 31c7b75 commit 8f4d2a5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

templates/swift/example-uikit/UIKitExample.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@
365365
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
366366
GCC_WARN_UNUSED_FUNCTION = YES;
367367
GCC_WARN_UNUSED_VARIABLE = YES;
368-
IPHONEOS_DEPLOYMENT_TARGET = 14.5;
368+
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
369369
MTL_ENABLE_DEBUG_INFO = NO;
370370
MTL_FAST_MATH = YES;
371371
SDKROOT = iphoneos;
@@ -495,7 +495,7 @@
495495
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
496496
GCC_WARN_UNUSED_FUNCTION = YES;
497497
GCC_WARN_UNUSED_VARIABLE = YES;
498-
IPHONEOS_DEPLOYMENT_TARGET = 14.5;
498+
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
499499
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
500500
MTL_FAST_MATH = YES;
501501
ONLY_ACTIVE_ARCH = YES;

templates/swift/example-uikit/UIKitExample/ViewController.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class ViewController: UIViewController {
2222
var bucketId = "test"
2323

2424
var fileId = "unique()"
25-
var documentIs = "unique()"
25+
var documentId = "unique()"
2626

2727
lazy var account = Account(client)
2828
lazy var storage = Storage(client)
@@ -111,7 +111,7 @@ class ViewController: UIViewController {
111111
do {
112112
let response = try await database.createDocument(
113113
collectionId: collectionId,
114-
documentId: documentId
114+
documentId: documentId,
115115
data: [
116116
"name": "Name \(Int.random(in: 0...Int.max))",
117117
"description": "Description \(Int.random(in: 0...Int.max))"

0 commit comments

Comments
 (0)