mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-09 06:43:25 +01:00
Default entitlements are to come from AltStoreFree.entitlements, for paid entitlements one can use CodeSigning.xcconfig to override it to point to AltStore.entitlements instead.
40 lines
1.5 KiB
Plaintext
40 lines
1.5 KiB
Plaintext
// Configuration settings file format documentation can be found at:
|
|
// https://help.apple.com/xcode/#/dev745c5c974
|
|
|
|
MARKETING_VERSION = 0.6.3
|
|
CURRENT_PROJECT_VERSION = 0603
|
|
|
|
// 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"
|
|
|
|
ORG_PREFIX = $(ORG_IDENTIFIER)
|
|
|
|
PRODUCT_NAME = SideStore
|
|
//PRODUCT_NAME[configuration=Debug] = Prov Debug
|
|
|
|
|
|
//PRODUCT_BUNDLE_IDENTIFIER[config=Debug] = $(ORG_PREFIX).SideStore$(BUNDLE_ID_SUFFIX)
|
|
//PRODUCT_BUNDLE_IDENTIFIER[config=Release] = $(ORG_PREFIX).SideStore
|
|
// preserve unmodified bundle ID (without any extra suffixes)
|
|
PRODUCT_BUNDLE_IDENTIFIER[config=Debug] = $(ORG_IDENTIFIER).SideStore.$(DEVELOPMENT_TEAM)
|
|
PRODUCT_BUNDLE_IDENTIFIER[config=Release] = $(ORG_IDENTIFIER).SideStore
|
|
GROUP_ID = $(ORG_IDENTIFIER).SideStore
|
|
GROUP_ID[config=Debug] = $(ORG_IDENTIFIER).SideStore.$(DEVELOPMENT_TEAM)
|
|
|
|
EXTENSION_PREFIX = $(PRODUCT_BUNDLE_IDENTIFIER)
|
|
APP_GROUP_IDENTIFIER = $(GROUP_ID)
|
|
ICLOUD_CONTAINER_IDENTIFIER = iCloud.$(ORG_PREFIX).$(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
|