iOS/Configuration/HomeAssistant.debug.xcconfig
Zac West 58084e868e
Strip Cocoapods frameworks on build (#2234)
## Summary
Cocoapods does not strip the .frameworks it creates, which was done for
us automatically when we were submitting using Bitcode, but upgrading to
Xcode 14 means that no longer happens for us.

## Any other notes
I think the tides are shifting strongly towards moving back to SPM,
which hopefully (lol) would be less buggy than the last time we tried
it.

Outstanding Cocoapods issue for this one:
https://github.com/CocoaPods/CocoaPods/issues/10277
2022-10-20 14:45:44 -07:00

26 lines
943 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
STRIP_INSTALLED_PRODUCT = NO
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