From f08b5044d64197a3227017ad44235a2bd7421691 Mon Sep 17 00:00:00 2001 From: Paul Beusterien Date: Wed, 3 Jan 2018 12:12:22 -0800 Subject: 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 --- Example/Podfile | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) (limited to 'Example/Podfile') 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. -- cgit v1.2.3