aboutsummaryrefslogtreecommitdiffhomepage
path: root/Example/Podfile
diff options
context:
space:
mode:
authorGravatar Paul Beusterien <paulbeusterien@google.com>2017-12-02 07:02:54 -0800
committerGravatar GitHub <noreply@github.com>2017-12-02 07:02:54 -0800
commit9c08142051f522c6214337470b870919c30a6192 (patch)
tree084f4e01c8ce1331da57c253bd6238e4f4fb7ad2 /Example/Podfile
parent0fca3573986f7ea8b715237c87fd7ebec42b4277 (diff)
Add post_install workaround to enable internal component access to Analytics (#525)
Diffstat (limited to 'Example/Podfile')
-rw-r--r--Example/Podfile8
1 files changed, 8 insertions, 0 deletions
diff --git a/Example/Podfile b/Example/Podfile
index 875e492..164ca72 100644
--- a/Example/Podfile
+++ b/Example/Podfile
@@ -156,3 +156,11 @@ target 'Storage_Example_macOS' do
pod 'OCMock'
end
end
+
+# This post_install workaround should be removed when FirebaseAnalytics
+# removes its module includes to FirebaseCore.
+
+post_install do | installer |
+ print "Fix up FirebaseAnalytics module ... \n"
+ system 'cp ../patch/FirebaseAnalytics.h Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/'
+end