Skip to content
This repository was archived by the owner on Jan 16, 2021. It is now read-only.

Commit 093b08a

Browse files
committed
Use PRODUCT_BUNDLE_IDENTIFIER setting instead of setting it in Info.plist.
1 parent 64cbb3f commit 093b08a

File tree

5 files changed

+5
-3
lines changed

5 files changed

+5
-3
lines changed

Configurations/ParseTwitterTestApplication.xcconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
#include "Shared/Product/Application.xcconfig"
1212

1313
PRODUCT_NAME = ParseTwitterTestApplication
14+
PRODUCT_BUNDLE_IDENTIFIER = com.parse.twitterutils.testapplication
1415

1516
INFOPLIST_FILE = $(SRCROOT)/Tests/TestApplication/Resources/Info.plist
1617

Configurations/ParseTwitterUtils-iOS.xcconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
#include "Shared/Product/Framework.xcconfig"
1212

1313
PRODUCT_NAME = ParseTwitterUtils
14+
PRODUCT_BUNDLE_IDENTIFIER = com.parse.twitterutils
1415

1516
MACH_O_TYPE = staticlib
1617
DEFINES_MODULE = YES

Resources/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<key>CFBundleExecutable</key>
88
<string>ParseTwitterUtils</string>
99
<key>CFBundleIdentifier</key>
10-
<string>com.parse.twitterutils</string>
10+
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
1111
<key>CFBundleInfoDictionaryVersion</key>
1212
<string>6.0</string>
1313
<key>CFBundlePackageType</key>

Tests/Resources/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<key>CFBundleExecutable</key>
88
<string>$(EXECUTABLE_NAME)</string>
99
<key>CFBundleIdentifier</key>
10-
<string>com.parse.$(PRODUCT_NAME:rfc1034identifier)</string>
10+
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
1111
<key>CFBundleInfoDictionaryVersion</key>
1212
<string>6.0</string>
1313
<key>CFBundleName</key>

Tests/TestApplication/Resources/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<key>CFBundleIcons~ipad</key>
1212
<dict/>
1313
<key>CFBundleIdentifier</key>
14-
<string>com.parse.$(PRODUCT_NAME:rfc1034identifier)</string>
14+
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
1515
<key>CFBundleInfoDictionaryVersion</key>
1616
<string>6.0</string>
1717
<key>CFBundleName</key>

0 commit comments

Comments
 (0)