-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.yml
More file actions
46 lines (43 loc) · 1.52 KB
/
project.yml
File metadata and controls
46 lines (43 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: CloudKitSharing
options:
bundleIdPrefix: com.example
deploymentTarget:
iOS: "17.0"
xcodeVersion: "16.0"
generateEmptyDirectories: true
settings:
base:
SWIFT_VERSION: "6.0"
DEVELOPMENT_TEAM: "" # Set your team ID here (required for CloudKit)
CODE_SIGN_STYLE: Automatic
targets:
# ─────────────────────────────────────────────
# Main App
# ─────────────────────────────────────────────
CloudKitSharing:
type: application
platform: iOS
sources:
- path: Sources/App
- path: Sources/Shared
info:
path: App/Resources/Info.plist
properties:
UIBackgroundModes:
- remote-notification
CKSharingSupported: true
entitlements:
path: App/Resources/App.entitlements
properties:
com.apple.developer.icloud-container-identifiers:
- iCloud.com.example.cloudkitsharing
com.apple.developer.icloud-services:
- CloudKit
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.example.cloudkitsharing
MARKETING_VERSION: "1.0.0"
CURRENT_PROJECT_VERSION: "1"
GENERATE_INFOPLIST_FILE: YES
INFOPLIST_KEY_UILaunchScreen_Generation: YES
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone: "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"