-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.yml
More file actions
83 lines (79 loc) · 2.31 KB
/
Copy pathproject.yml
File metadata and controls
83 lines (79 loc) · 2.31 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
name: FitnessExporter
options:
bundleIdPrefix: com.bengsfort
deploymentTarget:
iOS: "18.0"
xcodeVersion: "16.0"
defaultConfig: Debug
createIntermediateGroups: true
settings:
base:
PRODUCT_NAME: FitnessExporter
SWIFT_VERSION: "6.0"
CODE_SIGN_STYLE: Automatic
schemes:
FitnessExporter:
build:
targets:
FitnessExporter: [run, archive, profile]
FitnessExporterTests: [test, analyze]
run:
config: Debug
test:
config: Debug
targets:
- FitnessExporterTests
archive:
config: Release
targets:
FitnessExporter:
type: application
platform: iOS
deploymentTarget: "18.0"
sources:
- path: FitnessExporter
excludes:
- "*.entitlements"
entitlements:
path: FitnessExporter/FitnessExporter.entitlements
properties:
com.apple.developer.healthkit: true
com.apple.developer.healthkit.access: []
info:
path: FitnessExporter/Info.plist
properties:
CFBundleName: FitnessExporter
CFBundleDisplayName: Fitness Exporter
CFBundleShortVersionString: "1.1.0"
CFBundleVersion: "1"
NSHealthShareUsageDescription: "Fitness Exporter reads your step count, flights climbed, weight, and energy burned to export health data."
NSHealthUpdateUsageDescription: "Fitness Exporter does not write health data."
UIFileSharingEnabled: true
LSSupportsOpeningDocumentsInPlace: true
ITSAppUsesNonExemptEncryption: false
UILaunchScreen: {}
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.bengsfort.FitnessExporter
INFOPLIST_FILE: FitnessExporter/Info.plist
CODE_SIGN_ENTITLEMENTS: FitnessExporter/FitnessExporter.entitlements
TARGETED_DEVICE_FAMILY: "1"
ASSETCATALOG_COMPILER_APPICON_NAME: AppIcon
dependencies:
- sdk: HealthKit.framework
FitnessExporterTests:
type: bundle.unit-test
platform: iOS
deploymentTarget: "18.0"
sources:
- path: FitnessExporterTests
- path: FitnessExporter
excludes:
- "*.entitlements"
- "App/FitnessExporterApp.swift"
dependencies:
- sdk: HealthKit.framework
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.bengsfort.FitnessExporterTests
SWIFT_VERSION: "6.0"