Skip to content

Commit 485a3d5

Browse files
committed
upgraded project settings
1 parent 3bbfcd9 commit 485a3d5

File tree

6 files changed

+18
-6
lines changed

6 files changed

+18
-6
lines changed

ManualLayout.xcodeproj/project.pbxproj

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@
310310
isa = PBXProject;
311311
attributes = {
312312
LastSwiftUpdateCheck = 0700;
313-
LastUpgradeCheck = 0610;
313+
LastUpgradeCheck = 0700;
314314
ORGANIZATIONNAME = "Baris Sencan";
315315
TargetAttributes = {
316316
5F91347C1AC9E1630001DBF8 = {
@@ -468,6 +468,7 @@
468468
INFOPLIST_FILE = SimpleExample/Info.plist;
469469
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
470470
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
471+
PRODUCT_BUNDLE_IDENTIFIER = "com.bsencan.ManualLayout.SimpleExample.$(PRODUCT_NAME:rfc1034identifier)";
471472
PRODUCT_NAME = "$(TARGET_NAME)";
472473
};
473474
name = Debug;
@@ -480,6 +481,7 @@
480481
INFOPLIST_FILE = SimpleExample/Info.plist;
481482
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
482483
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
484+
PRODUCT_BUNDLE_IDENTIFIER = "com.bsencan.ManualLayout.SimpleExample.$(PRODUCT_NAME:rfc1034identifier)";
483485
PRODUCT_NAME = "$(TARGET_NAME)";
484486
};
485487
name = Release;
@@ -499,6 +501,7 @@
499501
INFOPLIST_FILE = SimpleExampleTests/Info.plist;
500502
IPHONEOS_DEPLOYMENT_TARGET = 8.2;
501503
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
504+
PRODUCT_BUNDLE_IDENTIFIER = "com.bsencan.ManualLayout.SimpleExample.$(PRODUCT_NAME:rfc1034identifier)";
502505
PRODUCT_NAME = "$(TARGET_NAME)";
503506
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/SimpleExample.app/SimpleExample";
504507
};
@@ -516,6 +519,7 @@
516519
INFOPLIST_FILE = SimpleExampleTests/Info.plist;
517520
IPHONEOS_DEPLOYMENT_TARGET = 8.2;
518521
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
522+
PRODUCT_BUNDLE_IDENTIFIER = "com.bsencan.ManualLayout.SimpleExample.$(PRODUCT_NAME:rfc1034identifier)";
519523
PRODUCT_NAME = "$(TARGET_NAME)";
520524
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/SimpleExample.app/SimpleExample";
521525
};
@@ -542,6 +546,7 @@
542546
COPY_PHASE_STRIP = NO;
543547
CURRENT_PROJECT_VERSION = 1;
544548
ENABLE_STRICT_OBJC_MSGSEND = YES;
549+
ENABLE_TESTABILITY = YES;
545550
GCC_C_LANGUAGE_STANDARD = gnu99;
546551
GCC_DYNAMIC_NO_PIC = NO;
547552
GCC_OPTIMIZATION_LEVEL = 0;
@@ -618,6 +623,7 @@
618623
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
619624
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
620625
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
626+
PRODUCT_BUNDLE_IDENTIFIER = "com.bsencan.$(PRODUCT_NAME:rfc1034identifier)";
621627
PRODUCT_NAME = "$(TARGET_NAME)";
622628
SKIP_INSTALL = YES;
623629
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
@@ -636,6 +642,7 @@
636642
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
637643
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
638644
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
645+
PRODUCT_BUNDLE_IDENTIFIER = "com.bsencan.$(PRODUCT_NAME:rfc1034identifier)";
639646
PRODUCT_NAME = "$(TARGET_NAME)";
640647
SKIP_INSTALL = YES;
641648
};
@@ -654,6 +661,7 @@
654661
);
655662
INFOPLIST_FILE = ManualLayoutTests/Info.plist;
656663
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
664+
PRODUCT_BUNDLE_IDENTIFIER = "com.bsencan.$(PRODUCT_NAME:rfc1034identifier)";
657665
PRODUCT_NAME = "$(TARGET_NAME)";
658666
};
659667
name = Debug;
@@ -667,6 +675,7 @@
667675
);
668676
INFOPLIST_FILE = ManualLayoutTests/Info.plist;
669677
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
678+
PRODUCT_BUNDLE_IDENTIFIER = "com.bsencan.$(PRODUCT_NAME:rfc1034identifier)";
670679
PRODUCT_NAME = "$(TARGET_NAME)";
671680
};
672681
name = Release;

ManualLayout.xcodeproj/xcshareddata/xcschemes/ManualLayout.xcscheme

Lines changed: 4 additions & 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 = "0610"
3+
LastUpgradeVersion = "0700"
44
version = "1.3">
55
<BuildAction
66
parallelizeBuildables = "YES"
@@ -62,6 +62,8 @@
6262
ReferencedContainer = "container:ManualLayout.xcodeproj">
6363
</BuildableReference>
6464
</MacroExpansion>
65+
<AdditionalOptions>
66+
</AdditionalOptions>
6567
</TestAction>
6668
<LaunchAction
6769
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
@@ -71,6 +73,7 @@
7173
buildConfiguration = "Debug"
7274
ignoresPersistentStateOnLaunch = "NO"
7375
debugDocumentVersioning = "YES"
76+
debugServiceExtension = "internal"
7477
allowLocationSimulation = "YES">
7578
<MacroExpansion>
7679
<BuildableReference

ManualLayout/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.bsencan.$(PRODUCT_NAME:rfc1034identifier)</string>
10+
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
1111
<key>CFBundleInfoDictionaryVersion</key>
1212
<string>6.0</string>
1313
<key>CFBundleName</key>

ManualLayoutTests/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.bsencan.$(PRODUCT_NAME:rfc1034identifier)</string>
10+
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
1111
<key>CFBundleInfoDictionaryVersion</key>
1212
<string>6.0</string>
1313
<key>CFBundleName</key>

SimpleExample/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.bsencan.ManualLayout.SimpleExample.$(PRODUCT_NAME:rfc1034identifier)</string>
10+
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
1111
<key>CFBundleInfoDictionaryVersion</key>
1212
<string>6.0</string>
1313
<key>CFBundleName</key>

SimpleExampleTests/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.bsencan.ManualLayout.SimpleExample.$(PRODUCT_NAME:rfc1034identifier)</string>
10+
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
1111
<key>CFBundleInfoDictionaryVersion</key>
1212
<string>6.0</string>
1313
<key>CFBundleName</key>

0 commit comments

Comments
 (0)