Skip to content

Commit 60dc427

Browse files
[PM-21393] fix: Split BitwardenKit configuration into Release and Debug (#1584)
1 parent 8aabc70 commit 60dc427

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
#include "./Common-bwpm.xcconfig"
2+
#include "./Base-Debug.xcconfig"
23
#include? "./Local-bwpm.xcconfig"
34

45
PRODUCT_BUNDLE_IDENTIFIER = $(ORGANIZATION_IDENTIFIER).bitwarden-kit
6+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = $(inherited) $(BITWARDEN_FLAGS)

Configs/BitwardenKit-Release.xcconfig

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#include "./Common-bwpm.xcconfig"
2+
#include "./Base-Release.xcconfig"
3+
#include? "./Local-bwpm.xcconfig"
4+
5+
PRODUCT_BUNDLE_IDENTIFIER = $(ORGANIZATION_IDENTIFIER).bitwarden-kit
6+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = $(inherited) $(BITWARDEN_FLAGS)

project-bwk.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@ targets:
101101
type: framework
102102
platform: iOS
103103
configFiles:
104-
Debug: Configs/BitwardenKit.xcconfig
105-
Release: Configs/BitwardenKit.xcconfig
104+
Debug: Configs/BitwardenKit-Debug.xcconfig
105+
Release: Configs/BitwardenKit-Release.xcconfig
106106
settings:
107107
base:
108108
APPLICATION_EXTENSION_API_ONLY: true

0 commit comments

Comments
 (0)