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

Commit 652d1a7

Browse files
committed
Use product bundle identifier in xcconfig files instead of hard coding into Info.plists.
1 parent 0656359 commit 652d1a7

File tree

10 files changed

+10
-6
lines changed

10 files changed

+10
-6
lines changed

Configurations/ParseFacebookTestApplicationV4.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 = ParseFacebookTestApplicationV4
14+
PRODUCT_BUNDLE_IDENTIFIER = com.parse.facebookutils-ios.unit.app
1415

1516
CLANG_ENABLE_MODULES = YES
1617

Configurations/ParseFacebookUtilsV4-UnitTests.xcconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
#include "Pods/Target Support Files/Pods-ParseFacebookUtilsV4-UnitTests/Pods-ParseFacebookUtilsV4-UnitTests.debug.xcconfig"
1313

1414
PRODUCT_NAME = ParseFacebookUtilsV4-UnitTests
15+
PRODUCT_BUNDLE_IDENTIFIER = com.parse.facebookutils-ios.unit
1516

1617
CLANG_ENABLE_MODULES = YES
1718

Configurations/ParseFacebookUtilsV4-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 = ParseFacebookUtilsV4
14+
PRODUCT_BUNDLE_IDENTIFIER = com.parse.facebookutils-ios
1415

1516
MACH_O_TYPE = staticlib
1617
DEFINES_MODULE = YES

Configurations/ParseFacebookUtilsV4-tvOS.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 = ParseFacebookUtilsV4
14+
PRODUCT_BUNDLE_IDENTIFIER = com.parse.facebookutils-tvos
1415

1516
MACH_O_TYPE = staticlib
1617
DEFINES_MODULE = YES

ParseFacebookUtils.xcodeproj/project.pbxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -553,7 +553,7 @@
553553
isa = PBXProject;
554554
attributes = {
555555
CLASSPREFIX = PF;
556-
LastUpgradeCheck = 0710;
556+
LastUpgradeCheck = 0720;
557557
ORGANIZATIONNAME = "Parse, LLC";
558558
TargetAttributes = {
559559
81CB98C51AB7905D00136FA5 = {

ParseFacebookUtils.xcodeproj/xcshareddata/xcschemes/ParseFacebookUtilsV4-iOS.xcscheme

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "0710"
3+
LastUpgradeVersion = "0720"
44
version = "1.3">
55
<BuildAction
66
parallelizeBuildables = "YES"

Resources/Info-iOS.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>ParseFacebookUtilsV4</string>
99
<key>CFBundleIdentifier</key>
10-
<string>com.parse.ParseFacebookUtils</string>
10+
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
1111
<key>CFBundleInfoDictionaryVersion</key>
1212
<string>6.0</string>
1313
<key>CFBundlePackageType</key>

Resources/Info-tvOS.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>ParseFacebookUtilsV4</string>
99
<key>CFBundleIdentifier</key>
10-
<string>com.parse.parsefacebookutils-tvos</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)