-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathperry.toml
More file actions
122 lines (111 loc) · 4.12 KB
/
Copy pathperry.toml
File metadata and controls
122 lines (111 loc) · 4.12 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
[android]
distribute = "playstore"
google_play_key = "/Users/amlug/projects/gscmaster.com/searchbird-483214-a77c096cd7bb.json"
key_alias = "key0"
keystore = "../jump.keystore"
[build]
opt_level = 2
out_dir = "dist"
[ios]
bundle_id = "com.bloom.jump"
certificate = "/Users/amlug/.perry/distribution.p12"
distribute = "testflight"
encryption_exempt = true
provisioning_profile = "/Users/amlug/.perry/com_bloom_jump.mobileprovision"
signing_identity = "Apple Distribution: Skelpo GmbH (K6UW5YV9F7)"
[linux]
distribute = "github"
[publish]
exclude = [
".git",
".claude",
".perry",
# Build inputs / uncompressed originals — only assets-src/icons/icon.png is
# needed at build time (referenced by [project.icons] source below), so keep
# the exclude scoped to the heavy subdirectories, not all of assets-src.
"assets-src/sounds",
"assets-src/icons/icon.iconset",
"assets-src/icons/ios",
"assets-src/icons/tvos",
"assets-src/icons/icon.icns",
"target",
"node_modules/**/target",
"dist",
"android/app/build",
"android/app/src/main/jniLibs",
"android/app/src/main/assets",
"android/.gradle",
"android/.kotlin",
"tvos-xcode",
"watchos-xcode",
"*.app",
# NOTE: do not add a bare "jump" exclude — perry's tarball excludes match by
# name at ANY depth, so it also prunes android/app/src/main/java/com/bloomengine/jump/
# (the launcher Activity source), which breaks the published Android AAB. The
# root `jump` binary is already dropped by the extension-less >1MB rule.
"editor",
"bloom_jump",
"bloom_jump_mac",
"repro",
"test_bug",
"*.o",
"*.so",
"perry-array-bug-repro.ts",
"PERRY-BUG-ARRAY-INDEX-READ.md",
]
# Pure-2D game: build the engine without Jolt physics, glTF/DDS model
# loading, and non-PNG image codecs (sprites are PNG, music is OGG).
# Requires perry >= 0.5.1126 (nativeLibrary feature forwarding); older
# perry ignores this table and builds the full engine — still correct,
# just bigger.
[native-library."@bloomengine/engine"]
default-features = false
[macos]
bundle_id = "com.bloom.jump"
provisioning_profile = "/Users/amlug/.perry/com_bloom_jump_macos.provisionprofile"
certificate = "/Users/amlug/.perry/macos_appstore.p12"
distribute = "both"
encryption_exempt = true
entitlements = ["com.apple.security.app-sandbox"]
installer_certificate = "/Users/amlug/.perry/macos_installer.p12"
notarize_certificate = "/Users/amlug/.perry/macos_devid.p12"
notarize_signing_identity = "Developer ID Application: Skelpo GmbH"
signing_identity = "Mac App Distribution: Skelpo GmbH"
[project]
build_number = 83
bundle_id = "com.bloom.jump"
# Home Screen / App Store display name. Without this, iOS falls back to the
# executable stem ("bloom-jump"). Requires perry with CFBundleDisplayName
# support (the [project]/[ios] display_name plist key).
display_name = "Bloom Jump"
entry = "src/main.ts"
features = ["ios-game-loop", "watchos-swift-app"]
name = "bloom-jump"
version = "1.0.77"
[project.icons]
source = "assets-src/icons/icon.png"
[tvos]
bundle_id = "com.bloom.jump"
certificate = "/Users/amlug/.perry/distribution.p12"
distribute = "testflight"
encryption_exempt = true
provisioning_profile = "/Users/amlug/.perry/com_bloomengine_jump_tvos.mobileprovision"
signing_identity = "Apple Distribution: Skelpo GmbH (K6UW5YV9F7)"
[watchos]
bundle_id = "com.bloom.jump"
certificate = "/Users/amlug/.perry/distribution.p12"
distribute = "testflight"
encryption_exempt = true
provisioning_profile = "/Users/amlug/.perry/com_bloom_jump_watchos.mobileprovision"
signing_identity = "Apple Distribution: Skelpo GmbH (K6UW5YV9F7)"
[windows]
distribute = "github"
# GUI game that renders its own window but doesn't import perry/ui, so force
# the WINDOWS subsystem — otherwise Windows pops a console window alongside it.
subsystem = "windows"
# Authenticode code signing via Google Cloud KMS. In CI the cert + service
# account files are written from secrets and `gcloud_kms_key` is injected by the
# "Decode Windows signing credentials" step in release.yml. For local Windows
# publishes, point these at your local copies + KMS key resource name.
gcloud_kms_cert = "/tmp/win_codesign.crt"
gcloud_service_account = "/tmp/win_kms_sa.json"