-
Notifications
You must be signed in to change notification settings - Fork 1
/
project.yml
65 lines (62 loc) · 1.9 KB
/
project.yml
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
name: WidgetKit_Sample
options:
bundleIdPrefix: com.osmanyildirim
xcodeVersion: 14.1
settings:
base:
CODE_SIGN_STYLE: Manual
SWIFT_VERSION: 5.0
targets:
WidgetKit_Sample:
type: application
sources: [Sources, Shared, IntentHandler/SelectPokemon.intentdefinition]
platform: iOS
deploymentTarget: 16.0
dependencies:
- target: WidgetsExtension
- target: IntentExtension
settings:
base:
TARGETED_DEVICE_FAMILY: 1
PRODUCT_BUNDLE_IDENTIFIER: com.osmanyildirim.WidgetKit-Sample
INFOPLIST_FILE: Sources/Supporting/Info.plist
CODE_SIGN_ENTITLEMENTS: Sources/Supporting/WidgetKit_Sample.entitlements
postbuildScripts:
- path: Scripts/Swiftlint.sh
name: Swiftlint
WidgetsExtension:
type: app-extension
sources:
[
Widgets,
Shared,
Sources/Assets/Assets.xcassets,
IntentHandler/SelectPokemon.intentdefinition,
]
platform: iOS
deploymentTarget: 16.0
dependencies:
- sdk: SwiftUI.framework
- sdk: WidgetKit.framework
settings:
base:
TARGETED_DEVICE_FAMILY: 1
PRODUCT_BUNDLE_IDENTIFIER: com.osmanyildirim.WidgetKit-Sample.Widgets
INFOPLIST_FILE: Widgets/Supporting/Info.plist
CODE_SIGN_ENTITLEMENTS: Widgets/Supporting/WidgetsExtension.entitlements
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME: AccentColor
postbuildScripts:
- path: Scripts/Swiftlint.sh
name: Swiftlint
IntentExtension:
type: app-extension
sources: [IntentHandler, Shared]
platform: iOS
deploymentTarget: 16.0
dependencies:
- sdk: Intents.framework
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.osmanyildirim.WidgetKit-Sample.IntentExtension
INFOPLIST_FILE: IntentHandler/Supporting/Info.plist
CODE_SIGN_ENTITLEMENTS: IntentHandler/Supporting/IntentExtension.entitlements