forked from invertase/react-native-apple-authentication
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRNAppleAuthentication.podspec
More file actions
20 lines (19 loc) · 922 Bytes
/
RNAppleAuthentication.podspec
File metadata and controls
20 lines (19 loc) · 922 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require 'json'
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
Pod::Spec.new do |s|
s.name = "RNAppleAuthentication"
s.version = package["version"]
s.description = package["description"]
s.summary = <<-DESC
Apple Authentication services for React Native.
DESC
s.homepage = "http://invertase.io/oss/react-native-firebase"
s.license = package['license']
s.authors = "Invertase Limited"
s.source = { :git => "https://github.com/invertase/react-native-apple-authentication.git", :tag => "v#{s.version}" }
s.social_media_url = 'http://twitter.com/invertaseio'
s.platforms = { :ios => "9.0", :osx => "10.15" }
s.source_files = 'ios/**/*.{h,m}'
s.dependency 'React-Core'
s.static_framework = true
end