-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.yml
More file actions
50 lines (50 loc) · 1.68 KB
/
project.yml
File metadata and controls
50 lines (50 loc) · 1.68 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
name: HDZap
options:
bundleIdPrefix: sh.saqoo
deploymentTarget:
iOS: "18.0"
xcodeVersion: "16.4"
developmentLanguage: en
settings:
base:
MARKETING_VERSION: "1.1.0"
CURRENT_PROJECT_VERSION: "20"
SWIFT_VERSION: "5.9"
DEVELOPMENT_TEAM: VCFY2GFR89
CODE_SIGN_STYLE: Automatic
ASSETCATALOG_COMPILER_APPICON_NAME: AppIcon
TARGETED_DEVICE_FAMILY: "1"
targets:
HDZap:
type: application
platform: iOS
settings:
base:
TARGETED_DEVICE_FAMILY: "1"
sources:
- HDZap
info:
path: HDZap/Info.plist
properties:
NSBluetoothAlwaysUsageDescription: "Connect to the OSD bridge device via Bluetooth"
ITSAppUsesNonExemptEncryption: false
UIBackgroundModes:
- bluetooth-central
CFBundleDisplayName: HDZap
CFBundleShortVersionString: $(MARKETING_VERSION)
CFBundleVersion: $(CURRENT_PROJECT_VERSION)
UIRequiresFullScreen: YES
UILaunchScreen: {}
schemes:
HDZap:
build:
targets:
HDZap: all
# No `storeKitConfiguration` here on purpose: local-StoreKit transactions are
# signed with a Xcode-only key that fails Apple Root CA G3 verification on the
# `hdzap-premium` Worker, so the JWS auth path can't be exercised end-to-end.
# Default to Sandbox in every local Debug run — same flow TestFlight testers see,
# one Sandbox Apple Account setup buys all subsequent runs. Keep the `.storekit`
# file in `HDZap/Resources/StoreKit/` so we can flip back via Xcode → Edit Scheme
# → Run → Options → StoreKit Configuration on the rare day local fake
# transactions are useful (paywall layout iteration without sandbox round-trip).