Skip to content

Commit 9acbb2b

Browse files
committed
updating scheme for archive
fixing versions fixing push registration using defaults
1 parent a093b60 commit 9acbb2b

File tree

10 files changed

+170
-63
lines changed

10 files changed

+170
-63
lines changed

iOS_SDK/OneSignalDevApp/OneSignalDevApp/AppDelegate.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(
5656

5757
id openNotificationHandler = ^(OSNotificationOpenedResult *result) {
5858
NSLog(@"OSNotificationOpenedResult: %@", result.action);
59-
59+
6060
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Notifiation Opened In App Delegate" message:@"Notification Opened In App Delegate" delegate:self cancelButtonTitle:@"Delete" otherButtonTitles:@"Cancel", nil];
6161
[alert show];
6262
};
@@ -86,7 +86,7 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(
8686
[OneSignal addEmailSubscriptionObserver:self];
8787

8888
[OneSignal pauseInAppMessages:true];
89-
89+
9090
[OneSignal setNotificationWillShowInForegroundHandler:notificationReceiverBlock];
9191
[OneSignal setNotificationOpenedHandler:openNotificationHandler];
9292

iOS_SDK/OneSignalDevApp/OneSignalDevApp/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
<key>CFBundlePackageType</key>
1616
<string>APPL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.0</string>
18+
<string>$(MARKETING_VERSION)</string>
1919
<key>CFBundleVersion</key>
20-
<string>1</string>
20+
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
<key>LSRequiresIPhoneOS</key>
2222
<true/>
2323
<key>NSAppTransportSecurity</key>

iOS_SDK/OneSignalDevApp/OneSignalDevAppClip/Info.plist

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,6 @@
22
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
33
<plist version="1.0">
44
<dict>
5-
<key>NSAppClip</key>
6-
<dict>
7-
<key>NSAppClipRequestLocationConfirmation</key>
8-
<true/>
9-
<key>NSAppClipRequestEphemeralUserNotification</key>
10-
<true/>
11-
</dict>
125
<key>CFBundleDevelopmentRegion</key>
136
<string>$(DEVELOPMENT_LANGUAGE)</string>
147
<key>CFBundleDisplayName</key>
@@ -24,11 +17,18 @@
2417
<key>CFBundlePackageType</key>
2518
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
2619
<key>CFBundleShortVersionString</key>
27-
<string>1.0</string>
20+
<string>$(MARKETING_VERSION)</string>
2821
<key>CFBundleVersion</key>
29-
<string>1</string>
22+
<string>$(CURRENT_PROJECT_VERSION)</string>
3023
<key>LSRequiresIPhoneOS</key>
3124
<true/>
25+
<key>NSAppClip</key>
26+
<dict>
27+
<key>NSAppClipRequestEphemeralUserNotification</key>
28+
<true/>
29+
<key>NSAppClipRequestLocationConfirmation</key>
30+
<true/>
31+
</dict>
3232
<key>UIApplicationSceneManifest</key>
3333
<dict>
3434
<key>UIApplicationSupportsMultipleScenes</key>

iOS_SDK/OneSignalDevApp/OneSignalDevApp.xcodeproj/project.pbxproj renamed to iOS_SDK/OneSignalDevApp/OneSignalExample.xcodeproj/project.pbxproj

Lines changed: 37 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
DE68DA6624C7695A00FC95A8 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = DE68DA6524C7695A00FC95A8 /* Assets.xcassets */; };
3737
DE68DA6924C7695A00FC95A8 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = DE68DA6724C7695A00FC95A8 /* LaunchScreen.storyboard */; };
3838
DE68DA6C24C7695A00FC95A8 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = DE68DA6B24C7695A00FC95A8 /* main.m */; };
39-
DE68DA7024C7695A00FC95A8 /* OneSignalDevAppClip.app in Embed App Clips */ = {isa = PBXBuildFile; fileRef = DE68DA5724C7695900FC95A8 /* OneSignalDevAppClip.app */; platformFilter = ios; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
39+
DE68DA7024C7695A00FC95A8 /* OneSignalExampleClip.app in Embed App Clips */ = {isa = PBXBuildFile; fileRef = DE68DA5724C7695900FC95A8 /* OneSignalExampleClip.app */; platformFilter = ios; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
4040
DE68DA7624C769E300FC95A8 /* libOneSignal.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DE68DA7524C769E300FC95A8 /* libOneSignal.a */; };
4141
DE68DA7724C769F200FC95A8 /* CoreLocation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 03432CDB1EBD426A0071FC48 /* CoreLocation.framework */; };
4242
DE68DA7824C769F900FC95A8 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9112E8A61E724EE00022A1CB /* SystemConfiguration.framework */; };
@@ -79,7 +79,7 @@
7979
dstPath = "$(CONTENTS_FOLDER_PATH)/AppClips";
8080
dstSubfolderSpec = 16;
8181
files = (
82-
DE68DA7024C7695A00FC95A8 /* OneSignalDevAppClip.app in Embed App Clips */,
82+
DE68DA7024C7695A00FC95A8 /* OneSignalExampleClip.app in Embed App Clips */,
8383
);
8484
name = "Embed App Clips";
8585
runOnlyForDeploymentPostprocessing = 0;
@@ -90,7 +90,7 @@
9090
03432CDB1EBD426A0071FC48 /* CoreLocation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreLocation.framework; path = System/Library/Frameworks/CoreLocation.framework; sourceTree = SDKROOT; };
9191
4529DEFD1FA921D900CEAB1D /* GoogleService-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "GoogleService-Info.plist"; sourceTree = "<group>"; };
9292
454F94F71FAD49F300D74CCF /* OneSignalNotificationServiceExtension.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = OneSignalNotificationServiceExtension.entitlements; sourceTree = "<group>"; };
93-
9112E8821E724C320022A1CB /* OneSignalDevApp.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = OneSignalDevApp.app; sourceTree = BUILT_PRODUCTS_DIR; };
93+
9112E8821E724C320022A1CB /* OneSignalExample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = OneSignalExample.app; sourceTree = BUILT_PRODUCTS_DIR; };
9494
9112E8861E724C320022A1CB /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
9595
9112E8881E724C320022A1CB /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
9696
9112E8891E724C320022A1CB /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
@@ -112,7 +112,7 @@
112112
91B6EA051E83215000B5CF01 /* UserNotifications.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UserNotifications.framework; path = System/Library/Frameworks/UserNotifications.framework; sourceTree = SDKROOT; };
113113
91B6EA091E834B1700B5CF01 /* sentImage.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = sentImage.jpg; sourceTree = "<group>"; };
114114
CACBAAB5218A7136000ACAA5 /* WebKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebKit.framework; path = System/Library/Frameworks/WebKit.framework; sourceTree = SDKROOT; };
115-
DE68DA5724C7695900FC95A8 /* OneSignalDevAppClip.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = OneSignalDevAppClip.app; sourceTree = BUILT_PRODUCTS_DIR; };
115+
DE68DA5724C7695900FC95A8 /* OneSignalExampleClip.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = OneSignalExampleClip.app; sourceTree = BUILT_PRODUCTS_DIR; };
116116
DE68DA5924C7695900FC95A8 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
117117
DE68DA5A24C7695900FC95A8 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
118118
DE68DA5C24C7695900FC95A8 /* SceneDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SceneDelegate.h; sourceTree = "<group>"; };
@@ -183,9 +183,9 @@
183183
9112E8831E724C320022A1CB /* Products */ = {
184184
isa = PBXGroup;
185185
children = (
186-
9112E8821E724C320022A1CB /* OneSignalDevApp.app */,
186+
9112E8821E724C320022A1CB /* OneSignalExample.app */,
187187
9150E7721E73BEDC00C5D46A /* OneSignalNotificationServiceExtension.appex */,
188-
DE68DA5724C7695900FC95A8 /* OneSignalDevAppClip.app */,
188+
DE68DA5724C7695900FC95A8 /* OneSignalExampleClip.app */,
189189
);
190190
name = Products;
191191
sourceTree = "<group>";
@@ -264,9 +264,9 @@
264264
/* End PBXGroup section */
265265

266266
/* Begin PBXNativeTarget section */
267-
9112E8811E724C320022A1CB /* OneSignalDevApp */ = {
267+
9112E8811E724C320022A1CB /* OneSignalExample */ = {
268268
isa = PBXNativeTarget;
269-
buildConfigurationList = 9112E8991E724C320022A1CB /* Build configuration list for PBXNativeTarget "OneSignalDevApp" */;
269+
buildConfigurationList = 9112E8991E724C320022A1CB /* Build configuration list for PBXNativeTarget "OneSignalExample" */;
270270
buildPhases = (
271271
9112E87E1E724C320022A1CB /* Sources */,
272272
9112E87F1E724C320022A1CB /* Frameworks */,
@@ -280,9 +280,9 @@
280280
9150E7791E73BEDD00C5D46A /* PBXTargetDependency */,
281281
DE68DA6F24C7695A00FC95A8 /* PBXTargetDependency */,
282282
);
283-
name = OneSignalDevApp;
283+
name = OneSignalExample;
284284
productName = OneSignalDevApp;
285-
productReference = 9112E8821E724C320022A1CB /* OneSignalDevApp.app */;
285+
productReference = 9112E8821E724C320022A1CB /* OneSignalExample.app */;
286286
productType = "com.apple.product-type.application";
287287
};
288288
9150E7711E73BEDC00C5D46A /* OneSignalNotificationServiceExtension */ = {
@@ -302,9 +302,9 @@
302302
productReference = 9150E7721E73BEDC00C5D46A /* OneSignalNotificationServiceExtension.appex */;
303303
productType = "com.apple.product-type.app-extension";
304304
};
305-
DE68DA5624C7695900FC95A8 /* OneSignalDevAppClip */ = {
305+
DE68DA5624C7695900FC95A8 /* OneSignalExampleClip */ = {
306306
isa = PBXNativeTarget;
307-
buildConfigurationList = DE68DA7424C7695A00FC95A8 /* Build configuration list for PBXNativeTarget "OneSignalDevAppClip" */;
307+
buildConfigurationList = DE68DA7424C7695A00FC95A8 /* Build configuration list for PBXNativeTarget "OneSignalExampleClip" */;
308308
buildPhases = (
309309
DE68DA5324C7695900FC95A8 /* Sources */,
310310
DE68DA5424C7695900FC95A8 /* Frameworks */,
@@ -314,9 +314,9 @@
314314
);
315315
dependencies = (
316316
);
317-
name = OneSignalDevAppClip;
317+
name = OneSignalExampleClip;
318318
productName = OneSignalDevAppClip;
319-
productReference = DE68DA5724C7695900FC95A8 /* OneSignalDevAppClip.app */;
319+
productReference = DE68DA5724C7695900FC95A8 /* OneSignalExampleClip.app */;
320320
productType = "com.apple.product-type.application.on-demand-install-capable";
321321
};
322322
/* End PBXNativeTarget section */
@@ -359,7 +359,7 @@
359359
};
360360
};
361361
};
362-
buildConfigurationList = 9112E87D1E724C320022A1CB /* Build configuration list for PBXProject "OneSignalDevApp" */;
362+
buildConfigurationList = 9112E87D1E724C320022A1CB /* Build configuration list for PBXProject "OneSignalExample" */;
363363
compatibilityVersion = "Xcode 3.2";
364364
developmentRegion = English;
365365
hasScannedForEncodings = 0;
@@ -373,9 +373,9 @@
373373
projectDirPath = "";
374374
projectRoot = "";
375375
targets = (
376-
9112E8811E724C320022A1CB /* OneSignalDevApp */,
376+
9112E8811E724C320022A1CB /* OneSignalExample */,
377377
9150E7711E73BEDC00C5D46A /* OneSignalNotificationServiceExtension */,
378-
DE68DA5624C7695900FC95A8 /* OneSignalDevAppClip */,
378+
DE68DA5624C7695900FC95A8 /* OneSignalExampleClip */,
379379
);
380380
};
381381
/* End PBXProject section */
@@ -454,7 +454,7 @@
454454
};
455455
DE68DA6F24C7695A00FC95A8 /* PBXTargetDependency */ = {
456456
isa = PBXTargetDependency;
457-
target = DE68DA5624C7695900FC95A8 /* OneSignalDevAppClip */;
457+
target = DE68DA5624C7695900FC95A8 /* OneSignalExampleClip */;
458458
targetProxy = DE68DA6E24C7695A00FC95A8 /* PBXContainerItemProxy */;
459459
};
460460
/* End PBXTargetDependency section */
@@ -538,6 +538,7 @@
538538
IPHONEOS_DEPLOYMENT_TARGET = 10.2;
539539
MTL_ENABLE_DEBUG_INFO = YES;
540540
ONLY_ACTIVE_ARCH = YES;
541+
PRODUCT_NAME = OneSignalExample;
541542
SDKROOT = iphoneos;
542543
TARGETED_DEVICE_FAMILY = "1,2";
543544
};
@@ -579,6 +580,7 @@
579580
GCC_WARN_UNUSED_VARIABLE = YES;
580581
IPHONEOS_DEPLOYMENT_TARGET = 10.2;
581582
MTL_ENABLE_DEBUG_INFO = NO;
583+
PRODUCT_NAME = OneSignalExample;
582584
SDKROOT = iphoneos;
583585
TARGETED_DEVICE_FAMILY = "1,2";
584586
VALIDATE_PRODUCT = YES;
@@ -590,6 +592,7 @@
590592
buildSettings = {
591593
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
592594
CODE_SIGN_ENTITLEMENTS = OneSignalDevApp/OneSignalDevApp.entitlements;
595+
CURRENT_PROJECT_VERSION = 1.1;
593596
DERIVE_MACCATALYST_PRODUCT_BUNDLE_IDENTIFIER = YES;
594597
DEVELOPMENT_TEAM = 99SW8E36CT;
595598
FRAMEWORK_SEARCH_PATHS = (
@@ -601,7 +604,7 @@
601604
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
602605
OTHER_LDFLAGS = "-ObjC";
603606
PRODUCT_BUNDLE_IDENTIFIER = com.onesignal.example;
604-
PRODUCT_NAME = "$(TARGET_NAME)";
607+
PRODUCT_NAME = OneSignalExample;
605608
SUPPORTS_MACCATALYST = YES;
606609
};
607610
name = Debug;
@@ -611,6 +614,7 @@
611614
buildSettings = {
612615
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
613616
CODE_SIGN_ENTITLEMENTS = OneSignalDevApp/OneSignalDevApp.entitlements;
617+
CURRENT_PROJECT_VERSION = 1.1;
614618
DERIVE_MACCATALYST_PRODUCT_BUNDLE_IDENTIFIER = YES;
615619
DEVELOPMENT_TEAM = 99SW8E36CT;
616620
FRAMEWORK_SEARCH_PATHS = (
@@ -622,7 +626,7 @@
622626
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
623627
OTHER_LDFLAGS = "-ObjC";
624628
PRODUCT_BUNDLE_IDENTIFIER = com.onesignal.example;
625-
PRODUCT_NAME = "$(TARGET_NAME)";
629+
PRODUCT_NAME = OneSignalExample;
626630
SUPPORTS_MACCATALYST = YES;
627631
};
628632
name = Release;
@@ -631,6 +635,7 @@
631635
isa = XCBuildConfiguration;
632636
buildSettings = {
633637
CODE_SIGN_ENTITLEMENTS = OneSignalNotificationServiceExtension/OneSignalNotificationServiceExtension.entitlements;
638+
CURRENT_PROJECT_VERSION = 1.1;
634639
DERIVE_MACCATALYST_PRODUCT_BUNDLE_IDENTIFIER = YES;
635640
DEVELOPMENT_TEAM = 99SW8E36CT;
636641
FRAMEWORK_SEARCH_PATHS = (
@@ -643,6 +648,7 @@
643648
"@executable_path/Frameworks",
644649
"@executable_path/../../Frameworks",
645650
);
651+
MARKETING_VERSION = 1.1;
646652
OTHER_LDFLAGS = "-ObjC";
647653
PRODUCT_BUNDLE_IDENTIFIER = com.onesignal.example.OneSignalNotificationServiceExtensionA;
648654
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -655,6 +661,7 @@
655661
isa = XCBuildConfiguration;
656662
buildSettings = {
657663
CODE_SIGN_ENTITLEMENTS = OneSignalNotificationServiceExtension/OneSignalNotificationServiceExtension.entitlements;
664+
CURRENT_PROJECT_VERSION = 1.1;
658665
DERIVE_MACCATALYST_PRODUCT_BUNDLE_IDENTIFIER = YES;
659666
DEVELOPMENT_TEAM = 99SW8E36CT;
660667
FRAMEWORK_SEARCH_PATHS = (
@@ -668,6 +675,7 @@
668675
"@executable_path/Frameworks",
669676
"@executable_path/../../Frameworks",
670677
);
678+
MARKETING_VERSION = 1.1;
671679
OTHER_LDFLAGS = "-ObjC";
672680
PRODUCT_BUNDLE_IDENTIFIER = com.onesignal.example.OneSignalNotificationServiceExtensionA;
673681
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -696,6 +704,7 @@
696704
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
697705
CODE_SIGN_ENTITLEMENTS = OneSignalDevAppClip/OneSignalDevAppClip.entitlements;
698706
CODE_SIGN_STYLE = Automatic;
707+
CURRENT_PROJECT_VERSION = 1.1;
699708
DEVELOPMENT_TEAM = 99SW8E36CT;
700709
GCC_C_LANGUAGE_STANDARD = gnu11;
701710
INFOPLIST_FILE = OneSignalDevAppClip/Info.plist;
@@ -704,10 +713,11 @@
704713
"$(inherited)",
705714
"@executable_path/Frameworks",
706715
);
716+
MARKETING_VERSION = 1.1;
707717
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
708718
MTL_FAST_MATH = YES;
709719
PRODUCT_BUNDLE_IDENTIFIER = com.onesignal.example.Clip;
710-
PRODUCT_NAME = "$(TARGET_NAME)";
720+
PRODUCT_NAME = OneSignalExampleClip;
711721
TARGETED_DEVICE_FAMILY = "1,2";
712722
};
713723
name = Debug;
@@ -732,6 +742,7 @@
732742
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
733743
CODE_SIGN_ENTITLEMENTS = OneSignalDevAppClip/OneSignalDevAppClip.entitlements;
734744
CODE_SIGN_STYLE = Automatic;
745+
CURRENT_PROJECT_VERSION = 1.1;
735746
DEVELOPMENT_TEAM = 99SW8E36CT;
736747
GCC_C_LANGUAGE_STANDARD = gnu11;
737748
INFOPLIST_FILE = OneSignalDevAppClip/Info.plist;
@@ -740,17 +751,18 @@
740751
"$(inherited)",
741752
"@executable_path/Frameworks",
742753
);
754+
MARKETING_VERSION = 1.1;
743755
MTL_FAST_MATH = YES;
744756
PRODUCT_BUNDLE_IDENTIFIER = com.onesignal.example.Clip;
745-
PRODUCT_NAME = "$(TARGET_NAME)";
757+
PRODUCT_NAME = OneSignalExampleClip;
746758
TARGETED_DEVICE_FAMILY = "1,2";
747759
};
748760
name = Release;
749761
};
750762
/* End XCBuildConfiguration section */
751763

752764
/* Begin XCConfigurationList section */
753-
9112E87D1E724C320022A1CB /* Build configuration list for PBXProject "OneSignalDevApp" */ = {
765+
9112E87D1E724C320022A1CB /* Build configuration list for PBXProject "OneSignalExample" */ = {
754766
isa = XCConfigurationList;
755767
buildConfigurations = (
756768
9112E8971E724C320022A1CB /* Debug */,
@@ -759,7 +771,7 @@
759771
defaultConfigurationIsVisible = 0;
760772
defaultConfigurationName = Release;
761773
};
762-
9112E8991E724C320022A1CB /* Build configuration list for PBXNativeTarget "OneSignalDevApp" */ = {
774+
9112E8991E724C320022A1CB /* Build configuration list for PBXNativeTarget "OneSignalExample" */ = {
763775
isa = XCConfigurationList;
764776
buildConfigurations = (
765777
9112E89A1E724C320022A1CB /* Debug */,
@@ -777,7 +789,7 @@
777789
defaultConfigurationIsVisible = 0;
778790
defaultConfigurationName = Release;
779791
};
780-
DE68DA7424C7695A00FC95A8 /* Build configuration list for PBXNativeTarget "OneSignalDevAppClip" */ = {
792+
DE68DA7424C7695A00FC95A8 /* Build configuration list for PBXNativeTarget "OneSignalExampleClip" */ = {
781793
isa = XCConfigurationList;
782794
buildConfigurations = (
783795
DE68DA7224C7695A00FC95A8 /* Debug */,
Lines changed: 9 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
<BuildableReference
1616
BuildableIdentifier = "primary"
1717
BlueprintIdentifier = "9112E8811E724C320022A1CB"
18-
BuildableName = "OneSignalDevApp.app"
19-
BlueprintName = "OneSignalDevApp"
20-
ReferencedContainer = "container:OneSignalDevApp.xcodeproj">
18+
BuildableName = "OneSignalExample.app"
19+
BlueprintName = "OneSignalExample"
20+
ReferencedContainer = "container:OneSignalExample.xcodeproj">
2121
</BuildableReference>
2222
</BuildActionEntry>
2323
</BuildActionEntries>
@@ -27,15 +27,6 @@
2727
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
2828
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
2929
shouldUseLaunchSchemeArgsEnv = "YES">
30-
<MacroExpansion>
31-
<BuildableReference
32-
BuildableIdentifier = "primary"
33-
BlueprintIdentifier = "9112E8811E724C320022A1CB"
34-
BuildableName = "OneSignalDevApp.app"
35-
BlueprintName = "OneSignalDevApp"
36-
ReferencedContainer = "container:OneSignalDevApp.xcodeproj">
37-
</BuildableReference>
38-
</MacroExpansion>
3930
<AdditionalOptions>
4031
<AdditionalOption
4132
key = "MallocScribble"
@@ -71,9 +62,9 @@
7162
<BuildableReference
7263
BuildableIdentifier = "primary"
7364
BlueprintIdentifier = "9112E8811E724C320022A1CB"
74-
BuildableName = "OneSignalDevApp.app"
75-
BlueprintName = "OneSignalDevApp"
76-
ReferencedContainer = "container:OneSignalDevApp.xcodeproj">
65+
BuildableName = "OneSignalExample.app"
66+
BlueprintName = "OneSignalExample"
67+
ReferencedContainer = "container:OneSignalExample.xcodeproj">
7768
</BuildableReference>
7869
</BuildableProductRunnable>
7970
<CommandLineArguments>
@@ -106,9 +97,9 @@
10697
<BuildableReference
10798
BuildableIdentifier = "primary"
10899
BlueprintIdentifier = "9112E8811E724C320022A1CB"
109-
BuildableName = "OneSignalDevApp.app"
110-
BlueprintName = "OneSignalDevApp"
111-
ReferencedContainer = "container:OneSignalDevApp.xcodeproj">
100+
BuildableName = "OneSignalExample.app"
101+
BlueprintName = "OneSignalExample"
102+
ReferencedContainer = "container:OneSignalExample.xcodeproj">
112103
</BuildableReference>
113104
</BuildableProductRunnable>
114105
</ProfileAction>

0 commit comments

Comments
 (0)