mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-09 06:43:25 +01:00
34 lines
1.4 KiB
Plaintext
34 lines
1.4 KiB
Plaintext
// Configuration settings file format documentation can be found at:
|
|
// https://help.apple.com/xcode/#/dev745c5c974
|
|
|
|
MARKETING_VERSION = 0.5.10
|
|
CURRENT_PROJECT_VERSION = 5100
|
|
|
|
// Vars to be overwritten by `CodeSigning.xcconfig` if exists
|
|
DEVELOPMENT_TEAM = S32Z3HMYVQ
|
|
ORG_IDENTIFIER = com.SideStore
|
|
|
|
// 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 = $(ORG_PREFIX).SideStore
|
|
// add team ID to bundle ID for debug builds since these will most likely be installed via Xcode
|
|
// SideStore will expect the team ID to be at the end of the bundle ID, but this doesn't happen when we install via Xcode
|
|
// we don't want to do this for release since those builds will most likely be installed via SideServer, which adds the team ID
|
|
PRODUCT_BUNDLE_IDENTIFIER[config=Debug] = $(ORG_PREFIX).SideStore.$(DEVELOPMENT_TEAM)
|
|
|
|
EXTENSION_PREFIX = $(PRODUCT_BUNDLE_IDENTIFIER)
|
|
APP_GROUP_IDENTIFIER = $(PRODUCT_BUNDLE_IDENTIFIER)
|
|
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
|