Skip to content

Commit fc5e43f

Browse files
committed
Fix double dependency in E2E app
1 parent dd56ae5 commit fc5e43f

File tree

1 file changed

+27
-7
lines changed

1 file changed

+27
-7
lines changed

StreamChatSwiftUI.xcodeproj/project.pbxproj

Lines changed: 27 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -513,9 +513,9 @@
513513
ADCE871C2F0C291600F6A7C3 /* StreamChatCommonUI in Frameworks */ = {isa = PBXBuildFile; productRef = ADCE871B2F0C291600F6A7C3 /* StreamChatCommonUI */; };
514514
ADCE87772F0D261600F6A7C3 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 8465FCF42746A95600AF091E /* Localizable.strings */; };
515515
ADCE87782F0D261600F6A7C3 /* Localizable.stringsdict in Resources */ = {isa = PBXBuildFile; fileRef = 8465FCF62746A95600AF091E /* Localizable.stringsdict */; };
516-
ADCE879B2F0D5CF500F6A7C3 /* StreamChatCommonUI in Frameworks */ = {isa = PBXBuildFile; productRef = ADCE879A2F0D5CF500F6A7C3 /* StreamChatCommonUI */; };
517516
ADCE879D2F0D5CF500F6A7C3 /* StreamChatTestMockServer in Frameworks */ = {isa = PBXBuildFile; productRef = ADCE879C2F0D5CF500F6A7C3 /* StreamChatTestMockServer */; };
518517
ADCE879F2F0D5D0300F6A7C3 /* StreamChatCommonUI in Frameworks */ = {isa = PBXBuildFile; productRef = ADCE879E2F0D5D0300F6A7C3 /* StreamChatCommonUI */; };
518+
ADCE87A52F0D5ED900F6A7C3 /* StreamChat in Frameworks */ = {isa = PBXBuildFile; productRef = ADCE87A42F0D5ED900F6A7C3 /* StreamChat */; };
519519
ADE0F55E2CB838420053B8B9 /* ChatThreadListErrorBannerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = ADE0F55D2CB838420053B8B9 /* ChatThreadListErrorBannerView.swift */; };
520520
ADE0F5602CB846EC0053B8B9 /* FloatingBannerViewModifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = ADE0F55F2CB846EC0053B8B9 /* FloatingBannerViewModifier.swift */; };
521521
ADE0F5622CB8556F0053B8B9 /* ChatThreadListFooterView.swift in Sources */ = {isa = PBXBuildFile; fileRef = ADE0F5612CB8556F0053B8B9 /* ChatThreadListFooterView.swift */; };
@@ -1127,7 +1127,6 @@
11271127
8205B4182AD4267200265B84 /* StreamSwiftTestHelpers in Frameworks */,
11281128
ADCE879D2F0D5CF500F6A7C3 /* StreamChatTestMockServer in Frameworks */,
11291129
402C54482B6AAC0100672BFB /* StreamChatSwiftUI.framework in Frameworks */,
1130-
ADCE879B2F0D5CF500F6A7C3 /* StreamChatCommonUI in Frameworks */,
11311130
);
11321131
runOnlyForDeploymentPostprocessing = 0;
11331132
};
@@ -1137,6 +1136,7 @@
11371136
files = (
11381137
A35D803B283E89F50084FE25 /* StreamChatSwiftUI.framework in Frameworks */,
11391138
ADCE879F2F0D5D0300F6A7C3 /* StreamChatCommonUI in Frameworks */,
1139+
ADCE87A52F0D5ED900F6A7C3 /* StreamChat in Frameworks */,
11401140
8400A34C282C081E0067D3A0 /* OHHTTPStubs in Frameworks */,
11411141
4FD307F62EC353BE0062127C /* StreamCore in Frameworks */,
11421142
);
@@ -2302,7 +2302,6 @@
23022302
name = StreamChatSwiftUITestsAppTests;
23032303
packageProductDependencies = (
23042304
8205B4172AD4267200265B84 /* StreamSwiftTestHelpers */,
2305-
ADCE879A2F0D5CF500F6A7C3 /* StreamChatCommonUI */,
23062305
ADCE879C2F0D5CF500F6A7C3 /* StreamChatTestMockServer */,
23072306
);
23082307
productName = StreamChatSwiftUITestsAppTests;
@@ -2321,13 +2320,16 @@
23212320
buildRules = (
23222321
);
23232322
dependencies = (
2323+
ADCE87A32F0D5DB000F6A7C3 /* PBXTargetDependency */,
2324+
ADCE87A12F0D5DAC00F6A7C3 /* PBXTargetDependency */,
23242325
8402EAD6282BFE5100CCA696 /* PBXTargetDependency */,
23252326
);
23262327
name = StreamChatSwiftUITestsApp;
23272328
packageProductDependencies = (
23282329
8400A34B282C081E0067D3A0 /* OHHTTPStubs */,
23292330
4FD307F52EC353BE0062127C /* StreamCore */,
23302331
ADCE879E2F0D5D0300F6A7C3 /* StreamChatCommonUI */,
2332+
ADCE87A42F0D5ED900F6A7C3 /* StreamChat */,
23312333
);
23322334
productName = StreamChatSwiftUITestsApp;
23332335
productReference = 8402EAC3282BF69900CCA696 /* StreamChatSwiftUITestsApp.app */;
@@ -3104,6 +3106,14 @@
31043106
isa = PBXTargetDependency;
31053107
productRef = ADCE87212F0C29E100F6A7C3 /* StreamChat */;
31063108
};
3109+
ADCE87A12F0D5DAC00F6A7C3 /* PBXTargetDependency */ = {
3110+
isa = PBXTargetDependency;
3111+
productRef = ADCE87A02F0D5DAC00F6A7C3 /* StreamChat */;
3112+
};
3113+
ADCE87A32F0D5DB000F6A7C3 /* PBXTargetDependency */ = {
3114+
isa = PBXTargetDependency;
3115+
productRef = ADCE87A22F0D5DB000F6A7C3 /* StreamChatCommonUI */;
3116+
};
31073117
/* End PBXTargetDependency section */
31083118

31093119
/* Begin PBXVariantGroup section */
@@ -3952,21 +3962,31 @@
39523962
package = 84E7F9E02EFAF9BF00BA56A3 /* XCRemoteSwiftPackageReference "stream-chat-swift" */;
39533963
productName = StreamChat;
39543964
};
3955-
ADCE879A2F0D5CF500F6A7C3 /* StreamChatCommonUI */ = {
3965+
ADCE879C2F0D5CF500F6A7C3 /* StreamChatTestMockServer */ = {
3966+
isa = XCSwiftPackageProductDependency;
3967+
package = 84E7F9E02EFAF9BF00BA56A3 /* XCRemoteSwiftPackageReference "stream-chat-swift" */;
3968+
productName = StreamChatTestMockServer;
3969+
};
3970+
ADCE879E2F0D5D0300F6A7C3 /* StreamChatCommonUI */ = {
39563971
isa = XCSwiftPackageProductDependency;
39573972
package = 84E7F9E02EFAF9BF00BA56A3 /* XCRemoteSwiftPackageReference "stream-chat-swift" */;
39583973
productName = StreamChatCommonUI;
39593974
};
3960-
ADCE879C2F0D5CF500F6A7C3 /* StreamChatTestMockServer */ = {
3975+
ADCE87A02F0D5DAC00F6A7C3 /* StreamChat */ = {
39613976
isa = XCSwiftPackageProductDependency;
39623977
package = 84E7F9E02EFAF9BF00BA56A3 /* XCRemoteSwiftPackageReference "stream-chat-swift" */;
3963-
productName = StreamChatTestMockServer;
3978+
productName = StreamChat;
39643979
};
3965-
ADCE879E2F0D5D0300F6A7C3 /* StreamChatCommonUI */ = {
3980+
ADCE87A22F0D5DB000F6A7C3 /* StreamChatCommonUI */ = {
39663981
isa = XCSwiftPackageProductDependency;
39673982
package = 84E7F9E02EFAF9BF00BA56A3 /* XCRemoteSwiftPackageReference "stream-chat-swift" */;
39683983
productName = StreamChatCommonUI;
39693984
};
3985+
ADCE87A42F0D5ED900F6A7C3 /* StreamChat */ = {
3986+
isa = XCSwiftPackageProductDependency;
3987+
package = 84E7F9E02EFAF9BF00BA56A3 /* XCRemoteSwiftPackageReference "stream-chat-swift" */;
3988+
productName = StreamChat;
3989+
};
39703990
E3A1C01B282BAC66002D1E26 /* Sentry */ = {
39713991
isa = XCSwiftPackageProductDependency;
39723992
package = E3A1C01A282BAC66002D1E26 /* XCRemoteSwiftPackageReference "sentry-cocoa" */;

0 commit comments

Comments
 (0)