Skip to content

Commit 9c05a94

Browse files
committed
Inline app identity into the xcconfig after removing Skip.env
1 parent 105b243 commit 9c05a94

1 file changed

Lines changed: 14 additions & 9 deletions

File tree

Darwin/BluetoothExplorer.xcconfig

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
1-
#include "../Skip.env"
2-
3-
// Set the action that will be executed as part of the Xcode Run Script phase
4-
// Setting to "launch" will build and run the app in the first open Android emulator or device
5-
// Setting to "build" will just run gradle build, but will not launch the app
6-
// Setting to "none" will completely disable the build and launch of the Android app
7-
//SKIP_ACTION = launch
8-
//SKIP_ACTION = build
9-
SKIP_ACTION = none
1+
// App identity. These previously lived in Skip.env, which was shared with the Android build; with
2+
// Skip removed they are declared here and the Android project carries its own copy.
3+
4+
// PRODUCT_NAME must match the app's Swift module name
5+
PRODUCT_NAME = BluetoothExplorer
6+
7+
// The unique id for the app
8+
PRODUCT_BUNDLE_IDENTIFIER = org.pureswift.bluetoothexplorer
9+
10+
// The semantic version of the app
11+
MARKETING_VERSION = 1.0.0
12+
13+
// The build number specifying the internal app version
14+
CURRENT_PROJECT_VERSION = 1
1015

1116
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon
1217
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor

0 commit comments

Comments
 (0)