forked from mcintyre94/wisp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.yml
More file actions
99 lines (96 loc) · 2.65 KB
/
project.yml
File metadata and controls
99 lines (96 loc) · 2.65 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
name: Wisp
options:
bundleIdPrefix: com.wisp
deploymentTarget:
iOS: "17.0"
xcodeVersion: "16.0"
createIntermediateGroups: true
settings:
SWIFT_VERSION: "6.0"
SWIFT_STRICT_CONCURRENCY: complete
packages:
MarkdownUI:
url: https://github.com/gonzalezreal/swift-markdown-ui
from: "2.4.0"
targets:
Wisp:
type: application
platform: iOS
sources:
- Wisp
info:
path: Wisp/Info.plist
properties:
CFBundleDisplayName: Wisp
UIApplicationSceneManifest:
UIApplicationSupportsMultipleScenes: false
UILaunchScreen: {}
CFBundleURLTypes:
- CFBundleURLName: com.wisp.app
CFBundleURLSchemes:
- wisp
settings:
PRODUCT_BUNDLE_IDENTIFIER: com.wisp.app
MARKETING_VERSION: "1.0.0"
CURRENT_PROJECT_VERSION: "1"
entitlements:
path: Wisp/Wisp.entitlements
properties:
com.apple.security.application-groups:
- group.com.wisp.app
dependencies:
- sdk: AppIntents.framework
- package: MarkdownUI
- target: WispShareExtension
embed: true
- target: WispActivityWidget
embed: true
WispShareExtension:
type: app-extension
platform: iOS
deploymentTarget: "17.0"
sources:
- WispShareExtension
settings:
PRODUCT_BUNDLE_IDENTIFIER: com.wisp.app.ShareExtension
GENERATE_INFOPLIST_FILE: false
INFOPLIST_FILE: WispShareExtension/Info.plist
SWIFT_VERSION: "6.0"
SWIFT_STRICT_CONCURRENCY: complete
entitlements:
path: WispShareExtension/WispShareExtension.entitlements
properties:
com.apple.security.application-groups:
- group.com.wisp.app
dependencies:
- sdk: AppIntents.framework
WispActivityWidget:
type: app-extension
platform: iOS
deploymentTarget: "17.0"
sources:
- WispActivityWidget
settings:
PRODUCT_BUNDLE_IDENTIFIER: com.wisp.app.WispActivityWidget
GENERATE_INFOPLIST_FILE: false
INFOPLIST_FILE: WispActivityWidget/Info.plist
SWIFT_VERSION: "6.0"
SWIFT_STRICT_CONCURRENCY: complete
entitlements:
path: WispActivityWidget/WispActivityWidget.entitlements
WispTests:
type: bundle.unit-test
platform: iOS
deploymentTarget: "26.0"
sources:
- WispTests
settings:
PRODUCT_BUNDLE_IDENTIFIER: com.wisp.app.tests
MARKETING_VERSION: "1.0.0"
CURRENT_PROJECT_VERSION: "59"
SWIFT_EMIT_LOC_STRINGS: NO
TEST_HOST: "$(BUILT_PRODUCTS_DIR)/Wisp.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Wisp"
BUNDLE_LOADER: "$(TEST_HOST)"
dependencies:
- target: Wisp
- sdk: AppIntents.framework