aboutsummaryrefslogtreecommitdiffhomepage
path: root/Example/Podfile
diff options
context:
space:
mode:
authorGravatar Paul Beusterien <paulbeusterien@google.com>2018-01-03 12:12:22 -0800
committerGravatar GitHub <noreply@github.com>2018-01-03 12:12:22 -0800
commitf08b5044d64197a3227017ad44235a2bd7421691 (patch)
tree0ea97726a39d1746acf260f42ef35c18f363f4e2 /Example/Podfile
parent9179dd86bfa507ede505c788a513e3824ad01856 (diff)
Add Community Supported tvOS (#590)
Add Community Supported tvOS for Core, Auth, Database and Storage. Add tvOS unit tests Add tvOS sample app Update README.md Add tvOS to travis testing
Diffstat (limited to 'Example/Podfile')
-rw-r--r--Example/Podfile54
1 files changed, 54 insertions, 0 deletions
diff --git a/Example/Podfile b/Example/Podfile
index 24a0de6..9e44d40 100644
--- a/Example/Podfile
+++ b/Example/Podfile
@@ -157,6 +157,60 @@ target 'Storage_Example_macOS' do
end
end
+target 'Core_Example_tvOS' do
+ platform :tvos, '10.0'
+
+ target 'Core_Tests_tvOS' do
+ inherit! :search_paths
+ pod 'OCMock'
+ end
+end
+
+target 'Auth_Example_tvOS' do
+ platform :tvos, '10.0'
+
+ pod 'FirebaseAuth', :path => '../'
+
+ target 'Auth_Tests_tvOS' do
+ inherit! :search_paths
+ pod 'OCMock'
+ end
+end
+
+target 'Database_Example_tvOS' do
+ platform :tvos, '10.0'
+
+ pod 'FirebaseDatabase', :path => '../'
+
+ target 'Database_Tests_tvOS' do
+ inherit! :search_paths
+ pod 'OCMock'
+ end
+
+# TODO
+# target 'Database_IntegrationTests_tvOS' do
+# inherit! :search_paths
+# pod 'OCMock'
+# end
+end
+
+target 'Storage_Example_tvOS' do
+ platform :tvos, '10.0'
+
+ pod 'FirebaseStorage', :path => '../'
+
+ target 'Storage_Tests_tvOS' do
+ inherit! :search_paths
+ pod 'OCMock'
+ end
+
+#TODO Storage_IntegrationTests_tvOS
+# target 'Storage_IntegrationTests_tvOS' do
+# inherit! :search_paths
+# pod 'OCMock'
+# end
+end
+
# This post_install workaround should be removed when FirebaseAnalytics
# removes its module includes to FirebaseCore.