From 98dfb602018087faee71e2f4fa2e6ca5c5241d3d Mon Sep 17 00:00:00 2001 From: Bartosz Polaczyk Date: Wed, 31 Aug 2022 17:44:48 +0200 Subject: [PATCH 1/2] Add integration test with static libraries --- e2eTests/tests/staticPods.Podfile | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 e2eTests/tests/staticPods.Podfile diff --git a/e2eTests/tests/staticPods.Podfile b/e2eTests/tests/staticPods.Podfile new file mode 100644 index 00000000..991f3d58 --- /dev/null +++ b/e2eTests/tests/staticPods.Podfile @@ -0,0 +1,6 @@ +plugin 'cocoapods-xcremotecache' + +target 'XCRemoteCacheSample' do + pod 'Firebase/Analytics' + pod 'ReactiveSwift' +end From 70196cc06576054a2023fb036fcf33f23012e5c5 Mon Sep 17 00:00:00 2001 From: Bartosz Polaczyk Date: Wed, 31 Aug 2022 18:02:59 +0200 Subject: [PATCH 2/2] Integrate only ReactiveSwift for static libraries tests --- e2eTests/tests/staticPods.Podfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/e2eTests/tests/staticPods.Podfile b/e2eTests/tests/staticPods.Podfile index 991f3d58..bd9f6f35 100644 --- a/e2eTests/tests/staticPods.Podfile +++ b/e2eTests/tests/staticPods.Podfile @@ -1,6 +1,9 @@ plugin 'cocoapods-xcremotecache' target 'XCRemoteCacheSample' do - pod 'Firebase/Analytics' + # Firebase/Analytics depends on `GoogleUtilities` + # that doesn't support static libs + # pod 'Firebase/Analytics' + pod 'ReactiveSwift' end