-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathreact-native-firebaseui-auth.podspec
27 lines (25 loc) · 1.08 KB
/
react-native-firebaseui-auth.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
require 'json'
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
version = package['version']
Pod::Spec.new do |s|
s.name = 'react-native-firebaseui-auth'
s.version = version
s.summary = 'Easy login with FirebaseUi Auth'
s.homepage = 'https://github.com/oijusti/react-native-firebaseui-auth'
s.license = package['license']
s.author = 'Oscar Justi <[email protected]>'
s.platforms = { :ios => '9.0' }
s.source = { :git => 'https://github.com/oijusti/react-native-firebaseui-auth.git', :tag => "v#{version}" }
s.source_files = 'ios/*.{h,m}'
s.dependency 'React'
s.dependency 'FirebaseAnonymousAuthUI'
s.dependency 'FirebaseAuthUI'
s.dependency 'FirebaseDatabaseUI'
s.dependency 'FirebaseEmailAuthUI'
s.dependency 'FirebaseFacebookAuthUI'
s.dependency 'FirebaseFirestoreUI'
s.dependency 'FirebaseGoogleAuthUI'
s.dependency 'FirebaseOAuthUI'
s.dependency 'FirebasePhoneAuthUI'
s.dependency 'FirebaseStorageUI'
end