Skip to content

Commit 0020ab2

Browse files
authored
Merge pull request #100 from BlueVirusX/master
Removed M13_APP_EXTENSIONS and fixed warnings
2 parents 645fcf2 + 5fa55e4 commit 0020ab2

File tree

11 files changed

+153
-59
lines changed

11 files changed

+153
-59
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
//
2+
// UIApplication+M13ProgressSuite.m
3+
// M13ProgressView
4+
//
5+
/*Copyright (c) 2013 Brandon McQuilkin
6+
7+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
8+
9+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
10+
11+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
12+
*/
13+
14+
#import <UIKit/UIKit.h>
15+
16+
/**A UIApplication category that deals with app extensions.*/
17+
@interface UIApplication (M13ProgressSuite)
18+
19+
/**Returns YES in case of app extension.*/
20+
+ (BOOL)isM13AppExtension;
21+
/**Returns the sharedApplication in case of app and nil in case of app extension.*/
22+
+ (UIApplication *)safeM13SharedApplication;
23+
24+
@end
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
//
2+
// UIApplication+M13ProgressSuite.m
3+
// M13ProgressView
4+
//
5+
6+
#import "UIApplication+M13ProgressSuite.h"
7+
8+
@implementation UIApplication (M13ProgressSuite)
9+
10+
+ (BOOL)isM13AppExtension
11+
{
12+
return [[self class] safeM13SharedApplication] == nil;
13+
}
14+
15+
+ (UIApplication *)safeM13SharedApplication
16+
{
17+
UIApplication *safeSharedApplication = nil;
18+
19+
if ([UIApplication respondsToSelector:@selector(sharedApplication)]) {
20+
safeSharedApplication = [UIApplication performSelector:@selector(sharedApplication)];
21+
}
22+
if (!safeSharedApplication.delegate) {
23+
safeSharedApplication = nil;
24+
}
25+
26+
return safeSharedApplication;
27+
}
28+
29+
@end

Classes/NavigationController/UINavigationController+M13ProgressViewBar.m

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
//
55

66
#import "UINavigationController+M13ProgressViewBar.h"
7+
#import "UIApplication+M13ProgressSuite.h"
78
#import <objc/runtime.h>
89

910
//Keys to set properties since one cannot define properties in a category.
@@ -135,18 +136,17 @@ - (UIInterfaceOrientation)currentDeviceOrientation
135136
{
136137
UIInterfaceOrientation orientation;
137138

138-
//Define "M13_APP_EXTENSIONS" Preprocessor Macro for App Extension target
139-
#if defined(M13_APP_EXTENSIONS)
140-
if ([UIScreen mainScreen].bounds.size.width < [UIScreen mainScreen].bounds.size.height) {
141-
orientation = UIInterfaceOrientationPortrait;
139+
if ([UIApplication isM13AppExtension]) {
140+
if ([UIScreen mainScreen].bounds.size.width < [UIScreen mainScreen].bounds.size.height) {
141+
orientation = UIInterfaceOrientationPortrait;
142+
} else {
143+
orientation = UIInterfaceOrientationLandscapeLeft;
144+
}
142145
} else {
143-
orientation = UIInterfaceOrientationLandscapeLeft;
146+
orientation = [UIApplication safeM13SharedApplication].statusBarOrientation;
144147
}
145-
#else
146-
orientation = [UIApplication sharedApplication].statusBarOrientation;
147-
#endif
148148

149-
return orientation;
149+
return orientation;
150150
}
151151

152152
#pragma mark Drawing

M13ProgressSuite.xcodeproj/project.pbxproj

Lines changed: 39 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
/* End PBXAggregateTarget section */
2222

2323
/* Begin PBXBuildFile section */
24+
62BB86011C87300F0019306A /* UIApplication+M13ProgressSuite.m in Sources */ = {isa = PBXBuildFile; fileRef = 62BB86001C87300F0019306A /* UIApplication+M13ProgressSuite.m */; };
2425
CA2FAF9C1889907300BCAEF5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CA2FAF9B1889907300BCAEF5 /* Foundation.framework */; };
2526
CA2FAF9E1889907300BCAEF5 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CA2FAF9D1889907300BCAEF5 /* CoreGraphics.framework */; };
2627
CA2FAFA01889907300BCAEF5 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CA2FAF9F1889907300BCAEF5 /* UIKit.framework */; };
@@ -56,9 +57,9 @@
5657
CA412B0518D2638E00FCB7CC /* RadiativeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CA412B0418D2638E00FCB7CC /* RadiativeViewController.m */; };
5758
CA66890618CBEF9300827C48 /* MetroViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CA66890518CBEF9300827C48 /* MetroViewController.m */; };
5859
CA6F31C7190EBF11008D1E64 /* LetterpressViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CA6F31C6190EBF11008D1E64 /* LetterpressViewController.m */; };
59-
FB2A7BE11B793E5600FE4E4A /* M13ProgressSuiteFramework.h in Headers */ = {isa = PBXBuildFile; fileRef = FB2A7BE01B793E5600FE4E4A /* M13ProgressSuiteFramework.h */; settings = {ATTRIBUTES = (Public, ); }; };
60-
FB2A7BF31B793E5600FE4E4A /* M13ProgressSuiteFramework.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB2A7BDC1B793E5600FE4E4A /* M13ProgressSuiteFramework.framework */; };
61-
FB2A7BF41B793E5600FE4E4A /* M13ProgressSuiteFramework.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = FB2A7BDC1B793E5600FE4E4A /* M13ProgressSuiteFramework.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
60+
FB2A7BE11B793E5600FE4E4A /* M13ProgressSuite.h in Headers */ = {isa = PBXBuildFile; fileRef = FB2A7BE01B793E5600FE4E4A /* M13ProgressSuite.h */; settings = {ATTRIBUTES = (Public, ); }; };
61+
FB2A7BF31B793E5600FE4E4A /* M13ProgressSuite.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB2A7BDC1B793E5600FE4E4A /* M13ProgressSuite.framework */; };
62+
FB2A7BF41B793E5600FE4E4A /* M13ProgressSuite.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = FB2A7BDC1B793E5600FE4E4A /* M13ProgressSuite.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
6263
FB2A7BFC1B793E6B00FE4E4A /* M13ProgressView.h in Headers */ = {isa = PBXBuildFile; fileRef = CA2FAFE11889937800BCAEF5 /* M13ProgressView.h */; settings = {ATTRIBUTES = (Public, ); }; };
6364
FB2A7BFD1B793E6B00FE4E4A /* M13ProgressView.m in Sources */ = {isa = PBXBuildFile; fileRef = CA2FAFE21889937800BCAEF5 /* M13ProgressView.m */; };
6465
FB2A7BFE1B793E6B00FE4E4A /* M13ProgressViewBar.h in Headers */ = {isa = PBXBuildFile; fileRef = CA2FAFE31889937800BCAEF5 /* M13ProgressViewBar.h */; settings = {ATTRIBUTES = (Public, ); }; };
@@ -121,14 +122,16 @@
121122
dstPath = "";
122123
dstSubfolderSpec = 10;
123124
files = (
124-
FB2A7BF41B793E5600FE4E4A /* M13ProgressSuiteFramework.framework in Embed Frameworks */,
125+
FB2A7BF41B793E5600FE4E4A /* M13ProgressSuite.framework in Embed Frameworks */,
125126
);
126127
name = "Embed Frameworks";
127128
runOnlyForDeploymentPostprocessing = 0;
128129
};
129130
/* End PBXCopyFilesBuildPhase section */
130131

131132
/* Begin PBXFileReference section */
133+
62BB85FF1C87300F0019306A /* UIApplication+M13ProgressSuite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "UIApplication+M13ProgressSuite.h"; path = "Classes/Application/UIApplication+M13ProgressSuite.h"; sourceTree = "<group>"; };
134+
62BB86001C87300F0019306A /* UIApplication+M13ProgressSuite.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "UIApplication+M13ProgressSuite.m"; path = "Classes/Application/UIApplication+M13ProgressSuite.m"; sourceTree = "<group>"; };
132135
CA1C945C18CCF59500B469BF /* M13ProgressViewMetroDotPolygon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = M13ProgressViewMetroDotPolygon.h; path = Classes/ProgressViews/M13ProgressViewMetroDotPolygon.h; sourceTree = "<group>"; };
133136
CA1C945D18CCF59500B469BF /* M13ProgressViewMetroDotPolygon.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = M13ProgressViewMetroDotPolygon.m; path = Classes/ProgressViews/M13ProgressViewMetroDotPolygon.m; sourceTree = "<group>"; };
134137
CA2FAF981889907300BCAEF5 /* M13ProgressSuite.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = M13ProgressSuite.app; sourceTree = BUILT_PRODUCTS_DIR; };
@@ -220,9 +223,9 @@
220223
CA6F31C2190EA88D008D1E64 /* M13ProgressViewLetterpress.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = M13ProgressViewLetterpress.m; path = Classes/ProgressViews/M13ProgressViewLetterpress.m; sourceTree = "<group>"; };
221224
CA6F31C5190EBF11008D1E64 /* LetterpressViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LetterpressViewController.h; sourceTree = "<group>"; };
222225
CA6F31C6190EBF11008D1E64 /* LetterpressViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LetterpressViewController.m; sourceTree = "<group>"; };
223-
FB2A7BDC1B793E5600FE4E4A /* M13ProgressSuiteFramework.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = M13ProgressSuiteFramework.framework; sourceTree = BUILT_PRODUCTS_DIR; };
226+
FB2A7BDC1B793E5600FE4E4A /* M13ProgressSuite.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = M13ProgressSuite.framework; sourceTree = BUILT_PRODUCTS_DIR; };
224227
FB2A7BDF1B793E5600FE4E4A /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
225-
FB2A7BE01B793E5600FE4E4A /* M13ProgressSuiteFramework.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = M13ProgressSuiteFramework.h; sourceTree = "<group>"; };
228+
FB2A7BE01B793E5600FE4E4A /* M13ProgressSuite.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = M13ProgressSuite.h; sourceTree = "<group>"; };
226229
/* End PBXFileReference section */
227230

228231
/* Begin PBXFrameworksBuildPhase section */
@@ -231,7 +234,7 @@
231234
buildActionMask = 2147483647;
232235
files = (
233236
CA2FAF9E1889907300BCAEF5 /* CoreGraphics.framework in Frameworks */,
234-
FB2A7BF31B793E5600FE4E4A /* M13ProgressSuiteFramework.framework in Frameworks */,
237+
FB2A7BF31B793E5600FE4E4A /* M13ProgressSuite.framework in Frameworks */,
235238
CA2FB03E1889975A00BCAEF5 /* QuartzCore.framework in Frameworks */,
236239
CA2FB03C1889975400BCAEF5 /* CoreImage.framework in Frameworks */,
237240
CA2FB03A1889974600BCAEF5 /* Accelerate.framework in Frameworks */,
@@ -260,6 +263,15 @@
260263
/* End PBXFrameworksBuildPhase section */
261264

262265
/* Begin PBXGroup section */
266+
62BB85FE1C872FF50019306A /* M13ProgressApplication */ = {
267+
isa = PBXGroup;
268+
children = (
269+
62BB85FF1C87300F0019306A /* UIApplication+M13ProgressSuite.h */,
270+
62BB86001C87300F0019306A /* UIApplication+M13ProgressSuite.m */,
271+
);
272+
name = M13ProgressApplication;
273+
sourceTree = "<group>";
274+
};
263275
CA2FAF8F1889907300BCAEF5 = {
264276
isa = PBXGroup;
265277
children = (
@@ -278,7 +290,7 @@
278290
children = (
279291
CA2FAF981889907300BCAEF5 /* M13ProgressSuite.app */,
280292
CA2FAFBC1889907300BCAEF5 /* M13ProgressSuiteTests.xctest */,
281-
FB2A7BDC1B793E5600FE4E4A /* M13ProgressSuiteFramework.framework */,
293+
FB2A7BDC1B793E5600FE4E4A /* M13ProgressSuite.framework */,
282294
);
283295
name = Products;
284296
sourceTree = "<group>";
@@ -347,6 +359,7 @@
347359
CA2FAFDF1889935700BCAEF5 /* HUD */,
348360
CA2FAFDB1889934300BCAEF5 /* Console */,
349361
CA2FAFD41889928200BCAEF5 /* M13ProgressNavigationController */,
362+
62BB85FE1C872FF50019306A /* M13ProgressApplication */,
350363
);
351364
name = Classes;
352365
sourceTree = "<group>";
@@ -570,7 +583,7 @@
570583
FB2A7BDD1B793E5600FE4E4A /* M13ProgressSuiteFramework */ = {
571584
isa = PBXGroup;
572585
children = (
573-
FB2A7BE01B793E5600FE4E4A /* M13ProgressSuiteFramework.h */,
586+
FB2A7BE01B793E5600FE4E4A /* M13ProgressSuite.h */,
574587
FB2A7BDE1B793E5600FE4E4A /* Supporting Files */,
575588
);
576589
path = M13ProgressSuiteFramework;
@@ -591,7 +604,7 @@
591604
isa = PBXHeadersBuildPhase;
592605
buildActionMask = 2147483647;
593606
files = (
594-
FB2A7BE11B793E5600FE4E4A /* M13ProgressSuiteFramework.h in Headers */,
607+
FB2A7BE11B793E5600FE4E4A /* M13ProgressSuite.h in Headers */,
595608
FB2A7BFC1B793E6B00FE4E4A /* M13ProgressView.h in Headers */,
596609
FB2A7BFE1B793E6B00FE4E4A /* M13ProgressViewBar.h in Headers */,
597610
FB2A7C001B793E6B00FE4E4A /* M13ProgressViewBorderedBar.h in Headers */,
@@ -668,7 +681,7 @@
668681
);
669682
name = M13ProgressSuiteFramework;
670683
productName = M13ProgressSuiteFramework;
671-
productReference = FB2A7BDC1B793E5600FE4E4A /* M13ProgressSuiteFramework.framework */;
684+
productReference = FB2A7BDC1B793E5600FE4E4A /* M13ProgressSuite.framework */;
672685
productType = "com.apple.product-type.framework";
673686
};
674687
/* End PBXNativeTarget section */
@@ -677,7 +690,7 @@
677690
CA2FAF901889907300BCAEF5 /* Project object */ = {
678691
isa = PBXProject;
679692
attributes = {
680-
LastUpgradeCheck = 0510;
693+
LastUpgradeCheck = 0720;
681694
ORGANIZATIONNAME = "Brandon McQuilkin";
682695
TargetAttributes = {
683696
CA2FAFBB1889907300BCAEF5 = {
@@ -761,6 +774,7 @@
761774
isa = PBXSourcesBuildPhase;
762775
buildActionMask = 2147483647;
763776
files = (
777+
62BB86011C87300F0019306A /* UIApplication+M13ProgressSuite.m in Sources */,
764778
CA2FB02B1889946F00BCAEF5 /* SampleViewController.m in Sources */,
765779
CA6F31C7190EBF11008D1E64 /* LetterpressViewController.m in Sources */,
766780
CA2FB0221889946F00BCAEF5 /* BarViewController.m in Sources */,
@@ -884,6 +898,7 @@
884898
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
885899
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
886900
COPY_PHASE_STRIP = NO;
901+
ENABLE_TESTABILITY = YES;
887902
GCC_C_LANGUAGE_STANDARD = gnu99;
888903
GCC_DYNAMIC_NO_PIC = NO;
889904
GCC_OPTIMIZATION_LEVEL = 0;
@@ -898,7 +913,7 @@
898913
GCC_WARN_UNINITIALIZED_AUTOS = YES;
899914
GCC_WARN_UNUSED_FUNCTION = YES;
900915
GCC_WARN_UNUSED_VARIABLE = YES;
901-
IPHONEOS_DEPLOYMENT_TARGET = 7.0;
916+
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
902917
ONLY_ACTIVE_ARCH = YES;
903918
SDKROOT = iphoneos;
904919
TARGETED_DEVICE_FAMILY = "1,2";
@@ -931,7 +946,7 @@
931946
GCC_WARN_UNINITIALIZED_AUTOS = YES;
932947
GCC_WARN_UNUSED_FUNCTION = YES;
933948
GCC_WARN_UNUSED_VARIABLE = YES;
934-
IPHONEOS_DEPLOYMENT_TARGET = 7.0;
949+
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
935950
SDKROOT = iphoneos;
936951
TARGETED_DEVICE_FAMILY = "1,2";
937952
VALIDATE_PRODUCT = YES;
@@ -947,6 +962,7 @@
947962
GCC_PREFIX_HEADER = "M13ProgressSuite/M13ProgressSuite-Prefix.pch";
948963
INFOPLIST_FILE = "M13ProgressSuite/M13ProgressSuite-Info.plist";
949964
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
965+
PRODUCT_BUNDLE_IDENTIFIER = "com.BrandonMcQuilkin.${PRODUCT_NAME:rfc1034identifier}";
950966
PRODUCT_NAME = "$(TARGET_NAME)";
951967
WRAPPER_EXTENSION = app;
952968
};
@@ -961,6 +977,7 @@
961977
GCC_PREFIX_HEADER = "M13ProgressSuite/M13ProgressSuite-Prefix.pch";
962978
INFOPLIST_FILE = "M13ProgressSuite/M13ProgressSuite-Info.plist";
963979
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
980+
PRODUCT_BUNDLE_IDENTIFIER = "com.BrandonMcQuilkin.${PRODUCT_NAME:rfc1034identifier}";
964981
PRODUCT_NAME = "$(TARGET_NAME)";
965982
WRAPPER_EXTENSION = app;
966983
};
@@ -982,6 +999,7 @@
982999
"$(inherited)",
9831000
);
9841001
INFOPLIST_FILE = "M13ProgressSuiteTests/M13ProgressSuiteTests-Info.plist";
1002+
PRODUCT_BUNDLE_IDENTIFIER = "com.BrandonMcQuilkin.${PRODUCT_NAME:rfc1034identifier}";
9851003
PRODUCT_NAME = "$(TARGET_NAME)";
9861004
TEST_HOST = "$(BUNDLE_LOADER)";
9871005
WRAPPER_EXTENSION = xctest;
@@ -1000,6 +1018,7 @@
10001018
GCC_PRECOMPILE_PREFIX_HEADER = YES;
10011019
GCC_PREFIX_HEADER = "M13ProgressSuite/M13ProgressSuite-Prefix.pch";
10021020
INFOPLIST_FILE = "M13ProgressSuiteTests/M13ProgressSuiteTests-Info.plist";
1021+
PRODUCT_BUNDLE_IDENTIFIER = "com.BrandonMcQuilkin.${PRODUCT_NAME:rfc1034identifier}";
10031022
PRODUCT_NAME = "$(TARGET_NAME)";
10041023
TEST_HOST = "$(BUNDLE_LOADER)";
10051024
WRAPPER_EXTENSION = xctest;
@@ -1041,10 +1060,11 @@
10411060
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
10421061
INFOPLIST_FILE = M13ProgressSuiteFramework/Info.plist;
10431062
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
1044-
IPHONEOS_DEPLOYMENT_TARGET = 8.4;
1063+
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
10451064
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
10461065
MTL_ENABLE_DEBUG_INFO = YES;
1047-
PRODUCT_NAME = "$(TARGET_NAME)";
1066+
PRODUCT_BUNDLE_IDENTIFIER = "com.BrandonMcQuilkin.$(PRODUCT_NAME:rfc1034identifier)";
1067+
PRODUCT_NAME = M13ProgressSuite;
10481068
SKIP_INSTALL = YES;
10491069
VERSIONING_SYSTEM = "apple-generic";
10501070
VERSION_INFO_PREFIX = "";
@@ -1069,10 +1089,11 @@
10691089
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
10701090
INFOPLIST_FILE = M13ProgressSuiteFramework/Info.plist;
10711091
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
1072-
IPHONEOS_DEPLOYMENT_TARGET = 8.4;
1092+
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
10731093
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
10741094
MTL_ENABLE_DEBUG_INFO = NO;
1075-
PRODUCT_NAME = "$(TARGET_NAME)";
1095+
PRODUCT_BUNDLE_IDENTIFIER = "com.BrandonMcQuilkin.$(PRODUCT_NAME:rfc1034identifier)";
1096+
PRODUCT_NAME = M13ProgressSuite;
10761097
SKIP_INSTALL = YES;
10771098
VERSIONING_SYSTEM = "apple-generic";
10781099
VERSION_INFO_PREFIX = "";

M13ProgressSuite.xcodeproj/xcshareddata/xcschemes/M13ProgressSuiteFramework.xcscheme

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "0640"
3+
LastUpgradeVersion = "0720"
44
version = "1.3">
55
<BuildAction
66
parallelizeBuildables = "YES"
@@ -15,35 +15,38 @@
1515
<BuildableReference
1616
BuildableIdentifier = "primary"
1717
BlueprintIdentifier = "FB2A7BDB1B793E5600FE4E4A"
18-
BuildableName = "M13ProgressSuiteFramework.framework"
18+
BuildableName = "M13ProgressSuite.framework"
1919
BlueprintName = "M13ProgressSuiteFramework"
2020
ReferencedContainer = "container:M13ProgressSuite.xcodeproj">
2121
</BuildableReference>
2222
</BuildActionEntry>
2323
</BuildActionEntries>
2424
</BuildAction>
2525
<TestAction
26+
buildConfiguration = "Debug"
2627
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
2728
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
28-
shouldUseLaunchSchemeArgsEnv = "YES"
29-
buildConfiguration = "Debug">
29+
shouldUseLaunchSchemeArgsEnv = "YES">
3030
<Testables>
3131
</Testables>
32+
<AdditionalOptions>
33+
</AdditionalOptions>
3234
</TestAction>
3335
<LaunchAction
36+
buildConfiguration = "Debug"
3437
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
3538
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
3639
launchStyle = "0"
3740
useCustomWorkingDirectory = "NO"
38-
buildConfiguration = "Debug"
3941
ignoresPersistentStateOnLaunch = "NO"
4042
debugDocumentVersioning = "YES"
43+
debugServiceExtension = "internal"
4144
allowLocationSimulation = "YES">
4245
<MacroExpansion>
4346
<BuildableReference
4447
BuildableIdentifier = "primary"
4548
BlueprintIdentifier = "FB2A7BDB1B793E5600FE4E4A"
46-
BuildableName = "M13ProgressSuiteFramework.framework"
49+
BuildableName = "M13ProgressSuite.framework"
4750
BlueprintName = "M13ProgressSuiteFramework"
4851
ReferencedContainer = "container:M13ProgressSuite.xcodeproj">
4952
</BuildableReference>
@@ -52,16 +55,16 @@
5255
</AdditionalOptions>
5356
</LaunchAction>
5457
<ProfileAction
58+
buildConfiguration = "Release"
5559
shouldUseLaunchSchemeArgsEnv = "YES"
5660
savedToolIdentifier = ""
5761
useCustomWorkingDirectory = "NO"
58-
buildConfiguration = "Release"
5962
debugDocumentVersioning = "YES">
6063
<MacroExpansion>
6164
<BuildableReference
6265
BuildableIdentifier = "primary"
6366
BlueprintIdentifier = "FB2A7BDB1B793E5600FE4E4A"
64-
BuildableName = "M13ProgressSuiteFramework.framework"
67+
BuildableName = "M13ProgressSuite.framework"
6568
BlueprintName = "M13ProgressSuiteFramework"
6669
ReferencedContainer = "container:M13ProgressSuite.xcodeproj">
6770
</BuildableReference>

0 commit comments

Comments
 (0)