aboutsummaryrefslogtreecommitdiffhomepage
path: root/Example/Podfile
diff options
context:
space:
mode:
authorGravatar Paul Beusterien <paulbeusterien@google.com>2018-04-19 09:20:06 -0700
committerGravatar Paul Beusterien <paulbeusterien@google.com>2018-04-25 08:34:10 -0700
commite413e22142ce3223001a69472ef996bb1302f617 (patch)
tree6dd14a59c191a72de8b0744b18fcf9d2d30a1f87 /Example/Podfile
parentfbd5acb785bd3fc10d966c621fe4c1fc2f96c29a (diff)
Remove workaround for Analytics modular header issue (#1142)
Diffstat (limited to 'Example/Podfile')
-rw-r--r--Example/Podfile19
1 files changed, 5 insertions, 14 deletions
diff --git a/Example/Podfile b/Example/Podfile
index 0d46941..774635c 100644
--- a/Example/Podfile
+++ b/Example/Podfile
@@ -1,3 +1,7 @@
+#delete source lines before master merge
+source 'sso://cpdc-internal/spec'
+source 'https://github.com/CocoaPods/Specs.git'
+
use_frameworks!
pod 'FirebaseCore', :path => '../'
@@ -8,17 +12,12 @@ target 'Core_Example_iOS' do
# The next line is the forcing function for the Firebase pod. The Firebase
# version's subspecs should depend on the component versions in their
# corresponding podspec's.
- pod 'Firebase/Core', '4.13.0'
+ pod 'Firebase/Core', '5.0.0'
target 'Core_Tests_iOS' do
inherit! :search_paths
pod 'OCMock'
end
-
- target 'Analytics_Tests_iOS' do
- inherit! :search_paths
- pod 'FirebaseAnalytics'
- end
end
target 'Auth_Example_iOS' do
@@ -214,11 +213,3 @@ target 'Storage_Example_tvOS' 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