forked from SideStore/SideStore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuild.xcconfig
More file actions
33 lines (25 loc) · 1.5 KB
/
Copy pathBuild.xcconfig
File metadata and controls
33 lines (25 loc) · 1.5 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
// Configuration settings file format documentation can be found at:
// https://help.apple.com/xcode/#/dev745c5c974
MARKETING_VERSION = 0.6.4
CURRENT_PROJECT_VERSION = 0604
// Vars to be overwritten by `CodeSigning.xcconfig` if exists
DEVELOPMENT_TEAM = S32Z3HMYVQ
ORG_IDENTIFIER = com.SideStore
// Default is free for CI builds, override it using CodeSigning.xcconfig if required
CODE_SIGN_ENTITLEMENTS = ./AltStore/AltStoreFree.entitlements
// Codesigning settings defined optionally, see `CodeSigning.xcconfig.example`
#include? "CodeSigning.xcconfig"
PRODUCT_NAME = SideStore
// Multi-account fork: install under a distinct bundle identifier ("MultiStore") so it coexists
// with an existing SideStore install. PRODUCT_NAME stays "SideStore" because the Makefile
// packaging targets reference SideStore.app/SideStore; the on-device display name is set to
// "MultiStore" via CFBundleDisplayName in AltStore/Info.plist.
BASE_BUNDLE_ID = $(ORG_IDENTIFIER).MultiStore
MAIN_BUNDLE_IDENTIFIER[config=Debug] = $(BASE_BUNDLE_ID).$(DEVELOPMENT_TEAM)
MAIN_BUNDLE_IDENTIFIER[config=Release] = $(BASE_BUNDLE_ID)
APP_GROUP_IDENTIFIER = $(MAIN_BUNDLE_IDENTIFIER)
ICLOUD_CONTAINER_IDENTIFIER = iCloud.$(ORG_IDENTIFIER).$(PROJECT_NAME)
// Suppress noise from os activity in xcode console log for release builds
DEBUG_ACTIVITY_MODE = disable
// Mute warnings about duplicate classes in AuthKit and AuthUIKit
DEBUG_DUPLICATE_CLASSES = NO