2022-06-07 05:20:24 -04:00
|
|
|
// Configuration settings file format documentation can be found at:
|
|
|
|
|
// https://help.apple.com/xcode/#/dev745c5c974
|
|
|
|
|
|
2024-04-23 03:20:40 -04:00
|
|
|
MARKETING_VERSION = 0.5.6
|
|
|
|
|
CURRENT_PROJECT_VERSION = 5060
|
2022-06-07 05:20:24 -04:00
|
|
|
|
|
|
|
|
// Vars to be overwritten by `CodeSigning.xcconfig` if exists
|
|
|
|
|
DEVELOPMENT_TEAM = S32Z3HMYVQ
|
2022-11-17 17:07:48 -08:00
|
|
|
ORG_IDENTIFIER = com.SideStore
|
2022-06-07 05:20:24 -04:00
|
|
|
|
|
|
|
|
// Codesigning settings defined optionally, see `CodeSigning.xcconfig.example`
|
|
|
|
|
#include? "CodeSigning.xcconfig"
|
|
|
|
|
|
|
|
|
|
ORG_PREFIX = $(ORG_IDENTIFIER)
|
|
|
|
|
|
2022-11-05 23:50:07 -07:00
|
|
|
PRODUCT_NAME = SideStore
|
2022-06-07 05:20:24 -04:00
|
|
|
//PRODUCT_NAME[configuration=Debug] = Prov Debug
|
|
|
|
|
|
2022-12-03 17:22:44 -05:00
|
|
|
PRODUCT_BUNDLE_IDENTIFIER = $(ORG_PREFIX).SideStore
|
2023-04-01 16:02:12 -07:00
|
|
|
// 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)
|
2022-06-07 05:20:24 -04:00
|
|
|
|
2023-04-01 16:02:12 -07:00
|
|
|
EXTENSION_PREFIX = $(PRODUCT_BUNDLE_IDENTIFIER)
|
|
|
|
|
APP_GROUP_IDENTIFIER = $(PRODUCT_BUNDLE_IDENTIFIER)
|
2022-06-07 05:20:24 -04:00
|
|
|
ICLOUD_CONTAINER_IDENTIFIER = iCloud.$(ORG_PREFIX).$(PROJECT_NAME)
|