mirror of
https://github.com/home-assistant/iOS.git
synced 2026-04-28 10:11:41 -05:00
## Summary Our request was approved to be able to read device names; this updates the build to add the entitlement for our production app. ## Any other notes Since we use a separate bundle identifier for development, that one currently does not have support for the user-assigned device name as our request was only approved for the production bundle identifier.
24 lines
913 B
Plaintext
24 lines
913 B
Plaintext
#include "HomeAssistant.xcconfig"
|
|
|
|
CODE_SIGN_STYLE_QMQYCKL255_App = Manual
|
|
CODE_SIGN_STYLE_QMQYCKL255_Extensions_PushProvider = Manual
|
|
PROVISIONING_PROFILE_SPECIFIER_QMQYCKL255_App = Local Developer: Main App
|
|
PROVISIONING_PROFILE_SPECIFIER_QMQYCKL255_Extensions_PushProvider = Local Developer: Push Provider
|
|
|
|
// apple did not give us the device name permission in the dev app
|
|
ENABLE_DEVICE_NAME_QMQYCKL255 = 0
|
|
|
|
BUNDLE_ID_SUFFIX = .dev
|
|
VALIDATE_PRODUCT = NO
|
|
DEBUG_INFORMATION_FORMAT = dwarf
|
|
OTHER_SWIFT_FLAGS = $(inherited) -DDEBUG -Xfrontend -warn-long-expression-type-checking=500 -Xfrontend -warn-long-function-bodies=500
|
|
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG
|
|
GCC_PREPROCESSOR_DEFINITIONS = DEBUG=1 $(inherited)
|
|
ONLY_ACTIVE_ARCH = YES
|
|
ENABLE_TESTABILITY = YES
|
|
LLVM_LTO = NO
|
|
GCC_OPTIMIZATION_LEVEL = 0
|
|
SWIFT_COMPILATION_MODE = singlefile
|
|
ENABLE_STRICT_OBJC_MSGSEND = YES
|
|
SWIFT_OPTIMIZATION_LEVEL = -Onone
|