Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[#519] Fix: Test run failed for not finding host application for staging scheme #544

Merged
merged 2 commits into from
Dec 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion {PROJECT_NAME}/Configurations/Plists/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<string>$(APP_DISPLAY_NAME)</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ONLY_ACTIVE_ARCH = YES
SWIFT_OPTIMIZATION_LEVEL = -Onone

GCC_PREPROCESSOR_DEFINITIONS = $(inherited) DEBUG=1 PRODUCTION=1
PRODUCT_NAME = $(TARGET_NAME)
APP_DISPLAY_NAME = $(TARGET_NAME)
PRODUCT_BUNDLE_IDENTIFIER = {BUNDLE_ID_PRODUCTION}
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG PRODUCTION
OTHER_SWIFT_FLAGS = $(inherited) -Xfrontend -warn-long-expression-type-checking=300 -Xfrontend -warn-long-function-bodies=300
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ONLY_ACTIVE_ARCH = YES
SWIFT_OPTIMIZATION_LEVEL = -Onone

GCC_PREPROCESSOR_DEFINITIONS = $(inherited) DEBUG=1 STAGING=1
PRODUCT_NAME = $(TARGET_NAME) Staging
APP_DISPLAY_NAME = $(TARGET_NAME) Staging
PRODUCT_BUNDLE_IDENTIFIER = {BUNDLE_ID_STAGING}
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG STAGING
OTHER_SWIFT_FLAGS = $(inherited) -Xfrontend -warn-long-expression-type-checking=300 -Xfrontend -warn-long-function-bodies=300
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ SWIFT_OPTIMIZATION_LEVEL = -O
ENABLE_BITCODE = NO

GCC_PREPROCESSOR_DEFINITIONS = $(inherited) PRODUCTION=1
PRODUCT_NAME = $(TARGET_NAME)
APP_DISPLAY_NAME = $(TARGET_NAME)
PRODUCT_BUNDLE_IDENTIFIER = {BUNDLE_ID_PRODUCTION}
SWIFT_ACTIVE_COMPILATION_CONDITIONS = PRODUCTION RELEASE
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ ENABLE_BITCODE = NO

ENABLE_BITCODE = NO
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) STAGING=1
PRODUCT_NAME = $(TARGET_NAME) Staging
APP_DISPLAY_NAME = $(TARGET_NAME) Staging
PRODUCT_BUNDLE_IDENTIFIER = {BUNDLE_ID_STAGING}
SWIFT_ACTIVE_COMPILATION_CONDITIONS = STAGING RELEASE