forked from auth0/react-native-auth0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathA0Auth0.podspec
23 lines (19 loc) · 827 Bytes
/
A0Auth0.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require 'json'
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
Pod::Spec.new do |s|
s.name = 'A0Auth0'
s.version = package['version']
s.summary = package['description']
s.homepage = package['repository']['baseUrl']
s.license = package['license']
s.authors = package['author']
s.platforms = { :ios => '13.0' }
s.source = { :git => 'https://github.com/auth0/react-native-auth0.git', :tag => "v#{s.version}" }
s.source_files = 'ios/**/*.{h,m,mm,swift}'
s.pod_target_xcconfig = { 'HEADER_SEARCH_PATHS' => "'${PODS_CONFIGURATION_BUILD_DIR}/#{s.name}/#{s.name}.framework/Headers'" }
s.requires_arc = true
s.dependency 'React-Core'
s.dependency 'Auth0', '2.5.0'
s.dependency 'JWTDecode', '3.1.0'
s.dependency 'SimpleKeychain', '1.1.0'
end