-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.yml
More file actions
125 lines (125 loc) · 4.11 KB
/
Copy pathproject.yml
File metadata and controls
125 lines (125 loc) · 4.11 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
name: RunimalApple
options:
deploymentTarget:
iOS: "26.0"
macOS: "15.0"
watchOS: "26.0"
packages:
RunimalPackage:
path: .
FitDataProtocol:
url: https://github.com/FitnessKit/FitDataProtocol
from: 2.1.6
targets:
RunimalMac:
type: application
platform: macOS
sources:
- path: RunimalMac
- path: SharedUI
resources:
- path: RunimalPhone/Content
- path: SharedUI/AssetCatalog
settings:
base:
GENERATE_INFOPLIST_FILE: YES
CODE_SIGNING_ALLOWED: NO
PRODUCT_BUNDLE_IDENTIFIER: com.jaw.runimal.mac
PRODUCT_NAME: RunimalMac
MARKETING_VERSION: 1.0
CURRENT_PROJECT_VERSION: 1
INFOPLIST_KEY_CFBundleDisplayName: RunimalMac
INFOPLIST_KEY_CFBundlePackageType: APPL
dependencies:
- package: RunimalPackage
product: RunimalCore
RunimalPhone:
type: application
platform: iOS
sources:
- path: RunimalPhone
- path: SharedUI
resources:
- path: RunimalPhone/Content
- path: SharedUI/AssetCatalog
settings:
base:
ASSETCATALOG_COMPILER_APPICON_NAME: AppIconPhone
GENERATE_INFOPLIST_FILE: YES
CODE_SIGNING_ALLOWED: YES
CODE_SIGN_STYLE: Automatic
DEVELOPMENT_TEAM: 8YJKN5NZT3
CODE_SIGN_IDENTITY: Apple Development
PRODUCT_BUNDLE_IDENTIFIER: com.jaw.runimal.phone
PRODUCT_NAME: RunimalPhone
MARKETING_VERSION: 1.0
CURRENT_PROJECT_VERSION: 1
INFOPLIST_KEY_CFBundleDisplayName: Runimal
INFOPLIST_KEY_LSRequiresIPhoneOS: YES
INFOPLIST_KEY_UIApplicationSceneManifest_Generation: YES
INFOPLIST_KEY_UILaunchScreen_Generation: YES
INFOPLIST_KEY_CFBundlePackageType: APPL
INFOPLIST_KEY_NSHealthShareUsageDescription: Runimal stores your runs and workout routes to grow your pet journal.
INFOPLIST_KEY_NSHealthUpdateUsageDescription: Runimal writes completed run rewards back into your training history.
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone:
- UIInterfaceOrientationPortrait
TARGETED_DEVICE_FAMILY: 1
CODE_SIGN_ENTITLEMENTS: RunimalPhone/RunimalPhone.entitlements
dependencies:
- package: RunimalPackage
product: RunimalCore
- package: FitDataProtocol
product: FitDataProtocol
- target: RunimalWatch
embed: true
RunimalWatch:
type: application
platform: watchOS
sources:
- path: RunimalWatch
- path: SharedUI
resources:
- path: SharedUI/AssetCatalog
settings:
base:
ASSETCATALOG_COMPILER_APPICON_NAME: AppIconWatch
GENERATE_INFOPLIST_FILE: YES
CODE_SIGNING_ALLOWED: YES
CODE_SIGN_STYLE: Automatic
DEVELOPMENT_TEAM: 8YJKN5NZT3
CODE_SIGN_IDENTITY: Apple Development
PRODUCT_BUNDLE_IDENTIFIER: com.jaw.runimal.phone.watch
PRODUCT_NAME: RunimalWatch
MARKETING_VERSION: 1.0
CURRENT_PROJECT_VERSION: 1
INFOPLIST_KEY_CFBundleDisplayName: RunimalWatch
INFOPLIST_KEY_CFBundlePackageType: APPL
INFOPLIST_KEY_WKApplication: YES
INFOPLIST_KEY_WKCompanionAppBundleIdentifier: com.jaw.runimal.phone
INFOPLIST_KEY_NSHealthShareUsageDescription: Runimal reads live run data to hatch and grow your companion.
INFOPLIST_KEY_NSHealthUpdateUsageDescription: Runimal saves completed workouts and routes after each run.
INFOPLIST_KEY_NSLocationWhenInUseUsageDescription: Runimal needs your route during runs so your companion can learn the path you took.
INFOPLIST_KEY_NSMotionUsageDescription: Runimal reads cadence during runs so your companion can react to your real stride.
CODE_SIGN_ENTITLEMENTS: RunimalWatch/RunimalWatch.entitlements
dependencies:
- package: RunimalPackage
product: RunimalCore
schemes:
RunimalMac:
build:
targets:
RunimalMac: all
run:
config: Debug
RunimalPhone:
build:
targets:
RunimalPhone: all
run:
config: Debug
RunimalWatch:
build:
targets:
RunimalWatch: all
run:
config: Debug