-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.yml
More file actions
104 lines (98 loc) · 3.09 KB
/
Copy pathproject.yml
File metadata and controls
104 lines (98 loc) · 3.09 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
100
101
102
103
104
name: AdPulse
options:
bundleIdPrefix: com.hatim
deploymentTarget:
iOS: "17.0"
createIntermediateGroups: true
generateEmptyDirectories: true
groupSortPosition: top
settings:
base:
SWIFT_VERSION: "5.9"
CODE_SIGN_STYLE: Automatic
DEVELOPMENT_TEAM: ""
ENABLE_USER_SCRIPT_SANDBOXING: YES
SWIFT_STRICT_CONCURRENCY: minimal
targets:
# ─── Main App ────────────────────────────────────────────────────────────
AdPulse:
type: application
platform: iOS
sources:
- path: AdPulseApp.swift
- path: Models
- path: ViewModels
- path: Services
- path: Theme
- path: Views
- path: Shared
resources:
- path: AdPulse-Data.csv
- path: Resources/Assets.xcassets
dependencies:
- target: AdPulseWidgets
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.hatim.adpulse
TARGETED_DEVICE_FAMILY: "1"
ASSETCATALOG_COMPILER_APPICON_NAME: AppIcon
GENERATE_INFOPLIST_FILE: YES
INFOPLIST_KEY_CFBundleDisplayName: AdPulse
INFOPLIST_KEY_NSSupportsLiveActivities: YES
INFOPLIST_KEY_UILaunchScreen_Generation: YES
INFOPLIST_KEY_UIApplicationSceneManifest_Generation: YES
INFOPLIST_KEY_UISupportedInterfaceOrientations: "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"
CURRENT_PROJECT_VERSION: 1
MARKETING_VERSION: "1.0"
# ─── Widget Extension (Live Activity) ────────────────────────────────────
AdPulseWidgets:
type: app-extension
platform: iOS
sources:
- path: Widgets
excludes:
- "SETUP.md"
- path: Shared
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.hatim.adpulse.AdPulseWidgets
SKIP_INSTALL: YES
TARGETED_DEVICE_FAMILY: "1"
INFOPLIST_KEY_CFBundleDisplayName: AdPulseWidgets
info:
path: Widgets/Info.plist
properties:
NSExtension:
NSExtensionPointIdentifier: com.apple.widgetkit-extension
# ─── Unit Tests ──────────────────────────────────────────────────────────
AdPulseTests:
type: bundle.unit-test
platform: iOS
sources:
- path: Tests/AdPulseTests
dependencies:
- target: AdPulse
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.hatim.adpulse.AdPulseTests
TARGETED_DEVICE_FAMILY: "1"
BUNDLE_LOADER: "$(TEST_HOST)"
TEST_HOST: "$(BUILT_PRODUCTS_DIR)/AdPulse.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/AdPulse"
schemes:
AdPulse:
build:
targets:
AdPulse: all
AdPulseWidgets: all
run:
config: Debug
test:
config: Debug
targets:
- AdPulseTests
profile:
config: Release
analyze:
config: Debug
archive:
config: Release