Skip to content

Commit fbc8de0

Browse files
committed
Refactoring Post Release test apps
1 parent f83c8a6 commit fbc8de0

File tree

24 files changed

+64
-776
lines changed

24 files changed

+64
-776
lines changed

SDKIntegrationTestApps/PostRelease-iOSReleaseTest-Carthage/iOSReleaseTest.xcodeproj/project.pbxproj

Lines changed: 24 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
E75C0E192975391F0001D5D7 /* BranchSDK.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = E763E99C29354DA40053F490 /* BranchSDK.xcframework */; };
1818
E75C0E1A2975391F0001D5D7 /* BranchSDK.xcframework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = E763E99C29354DA40053F490 /* BranchSDK.xcframework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
1919
E7939C0429749D3C00B90B82 /* iOSReleaseTestTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = E7939C0329749D3C00B90B82 /* iOSReleaseTestTests.swift */; };
20+
E7B81C062EAA091000BD39D6 /* BranchSDKTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = E7B81C052EAA091000BD39D6 /* BranchSDKTest.swift */; };
21+
E7B81C082EAA092700BD39D6 /* TestObserver.swift in Sources */ = {isa = PBXBuildFile; fileRef = E7B81C072EAA092700BD39D6 /* TestObserver.swift */; };
2022
/* End PBXBuildFile section */
2123

2224
/* Begin PBXContainerItemProxy section */
@@ -56,6 +58,8 @@
5658
E763E99C29354DA40053F490 /* BranchSDK.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = BranchSDK.xcframework; path = Carthage/Build/BranchSDK.xcframework; sourceTree = "<group>"; };
5759
E7939C0129749D3C00B90B82 /* iOSReleaseTestTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = iOSReleaseTestTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
5860
E7939C0329749D3C00B90B82 /* iOSReleaseTestTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = iOSReleaseTestTests.swift; sourceTree = "<group>"; };
61+
E7B81C052EAA091000BD39D6 /* BranchSDKTest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BranchSDKTest.swift; sourceTree = "<group>"; };
62+
E7B81C072EAA092700BD39D6 /* TestObserver.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TestObserver.swift; sourceTree = "<group>"; };
5963
/* End PBXFileReference section */
6064

6165
/* Begin PBXFrameworksBuildPhase section */
@@ -99,6 +103,7 @@
99103
C119B01627ADC85C00E8C7BF /* iOSReleaseTest */ = {
100104
isa = PBXGroup;
101105
children = (
106+
E7B81C052EAA091000BD39D6 /* BranchSDKTest.swift */,
102107
C119B02B27ADC8FB00E8C7BF /* iOSReleaseTest.entitlements */,
103108
C119B01727ADC85C00E8C7BF /* AppDelegate.swift */,
104109
C119B01927ADC85C00E8C7BF /* SceneDelegate.swift */,
@@ -108,7 +113,8 @@
108113
C119B02227ADC85E00E8C7BF /* LaunchScreen.storyboard */,
109114
C119B02527ADC85E00E8C7BF /* Info.plist */,
110115
);
111-
path = iOSReleaseTest;
116+
name = iOSReleaseTest;
117+
path = ../Source/iOSReleaseTest;
112118
sourceTree = "<group>";
113119
};
114120
E763E99B29354DA30053F490 /* Frameworks */ = {
@@ -122,9 +128,11 @@
122128
E7939C0229749D3C00B90B82 /* iOSReleaseTestTests */ = {
123129
isa = PBXGroup;
124130
children = (
131+
E7B81C072EAA092700BD39D6 /* TestObserver.swift */,
125132
E7939C0329749D3C00B90B82 /* iOSReleaseTestTests.swift */,
126133
);
127-
path = iOSReleaseTestTests;
134+
name = iOSReleaseTestTests;
135+
path = ../Source/IntegrationTests;
128136
sourceTree = "<group>";
129137
};
130138
/* End PBXGroup section */
@@ -232,6 +240,7 @@
232240
files = (
233241
C119B01C27ADC85C00E8C7BF /* ViewController.swift in Sources */,
234242
C119B01827ADC85C00E8C7BF /* AppDelegate.swift in Sources */,
243+
E7B81C062EAA091000BD39D6 /* BranchSDKTest.swift in Sources */,
235244
C119B01A27ADC85C00E8C7BF /* SceneDelegate.swift in Sources */,
236245
);
237246
runOnlyForDeploymentPostprocessing = 0;
@@ -241,6 +250,7 @@
241250
buildActionMask = 2147483647;
242251
files = (
243252
E7939C0429749D3C00B90B82 /* iOSReleaseTestTests.swift in Sources */,
253+
E7B81C082EAA092700BD39D6 /* TestObserver.swift in Sources */,
244254
);
245255
runOnlyForDeploymentPostprocessing = 0;
246256
};
@@ -395,12 +405,12 @@
395405
buildSettings = {
396406
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
397407
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
398-
CODE_SIGN_ENTITLEMENTS = iOSReleaseTest/iOSReleaseTest.entitlements;
399-
CODE_SIGN_STYLE = Automatic;
408+
CODE_SIGN_ENTITLEMENTS = "$(PROJECT_DIR)/../Source/iOSReleaseTest/iOSReleaseTest.entitlements";
409+
CODE_SIGN_STYLE = Manual;
400410
CURRENT_PROJECT_VERSION = 1;
401-
DEVELOPMENT_TEAM = 5YP4T32B58;
411+
DEVELOPMENT_TEAM = "";
402412
GENERATE_INFOPLIST_FILE = YES;
403-
INFOPLIST_FILE = iOSReleaseTest/Info.plist;
413+
INFOPLIST_FILE = "$(PROJECT_DIR)/../Source/iOSReleaseTest/Info.plist";
404414
INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
405415
INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen;
406416
INFOPLIST_KEY_UIMainStoryboardFile = Main;
@@ -411,8 +421,9 @@
411421
"@executable_path/Frameworks",
412422
);
413423
MARKETING_VERSION = 1.0;
414-
PRODUCT_BUNDLE_IDENTIFIER = com.NipunSingh.iOSReleaseTest;
424+
PRODUCT_BUNDLE_IDENTIFIER = "io.branch.link-simulator";
415425
PRODUCT_NAME = "$(TARGET_NAME)";
426+
PROVISIONING_PROFILE_SPECIFIER = "";
416427
SWIFT_EMIT_LOC_STRINGS = YES;
417428
SWIFT_VERSION = 5.0;
418429
TARGETED_DEVICE_FAMILY = "1,2";
@@ -424,12 +435,12 @@
424435
buildSettings = {
425436
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
426437
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
427-
CODE_SIGN_ENTITLEMENTS = iOSReleaseTest/iOSReleaseTest.entitlements;
428-
CODE_SIGN_STYLE = Automatic;
438+
CODE_SIGN_ENTITLEMENTS = "$(PROJECT_DIR)/../Source/iOSReleaseTest/iOSReleaseTest.entitlements";
439+
CODE_SIGN_STYLE = Manual;
429440
CURRENT_PROJECT_VERSION = 1;
430-
DEVELOPMENT_TEAM = YKPTD52Z6X;
441+
DEVELOPMENT_TEAM = "";
431442
GENERATE_INFOPLIST_FILE = YES;
432-
INFOPLIST_FILE = iOSReleaseTest/Info.plist;
443+
INFOPLIST_FILE = "$(PROJECT_DIR)/../Source/iOSReleaseTest/Info.plist";
433444
INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
434445
INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen;
435446
INFOPLIST_KEY_UIMainStoryboardFile = Main;
@@ -440,8 +451,9 @@
440451
"@executable_path/Frameworks",
441452
);
442453
MARKETING_VERSION = 1.0;
443-
PRODUCT_BUNDLE_IDENTIFIER = com.NipunSingh.iOSReleaseTest;
454+
PRODUCT_BUNDLE_IDENTIFIER = "io.branch.link-simulator";
444455
PRODUCT_NAME = "$(TARGET_NAME)";
456+
PROVISIONING_PROFILE_SPECIFIER = "";
445457
SWIFT_EMIT_LOC_STRINGS = YES;
446458
SWIFT_VERSION = 5.0;
447459
TARGETED_DEVICE_FAMILY = "1,2";

SDKIntegrationTestApps/PostRelease-iOSReleaseTest-Carthage/iOSReleaseTest/AppDelegate.swift

Lines changed: 0 additions & 38 deletions
This file was deleted.

SDKIntegrationTestApps/PostRelease-iOSReleaseTest-Carthage/iOSReleaseTest/Assets.xcassets/AccentColor.colorset/Contents.json

Lines changed: 0 additions & 11 deletions
This file was deleted.

SDKIntegrationTestApps/PostRelease-iOSReleaseTest-Carthage/iOSReleaseTest/Assets.xcassets/AppIcon.appiconset/Contents.json

Lines changed: 0 additions & 98 deletions
This file was deleted.

SDKIntegrationTestApps/PostRelease-iOSReleaseTest-Carthage/iOSReleaseTest/Assets.xcassets/Contents.json

Lines changed: 0 additions & 6 deletions
This file was deleted.

SDKIntegrationTestApps/PostRelease-iOSReleaseTest-Carthage/iOSReleaseTest/Base.lproj/LaunchScreen.storyboard

Lines changed: 0 additions & 25 deletions
This file was deleted.

SDKIntegrationTestApps/PostRelease-iOSReleaseTest-Carthage/iOSReleaseTest/Base.lproj/Main.storyboard

Lines changed: 0 additions & 24 deletions
This file was deleted.

SDKIntegrationTestApps/PostRelease-iOSReleaseTest-Carthage/iOSReleaseTest/Info.plist

Lines changed: 0 additions & 50 deletions
This file was deleted.

0 commit comments

Comments
 (0)