forked from callstack/react-native-fbads
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReactNativeFBAds.podspec
More file actions
25 lines (20 loc) · 972 Bytes
/
ReactNativeFBAds.podspec
File metadata and controls
25 lines (20 loc) · 972 Bytes
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
require 'json'
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
Pod::Spec.new do |s|
s.name = 'ReactNativeFBAds'
s.version = package['version']
s.summary = package['description']
s.description = package['description']
s.homepage = 'https://github.com/callstack-io/react-native-fbads'
s.license = package['license']
s.author = package['author']
s.source = { :git => 'https://github.com/callstack-io/react-native-fbads.git', :tag => 'v'+s.version.to_s }
s.platform = :ios, '9.0'
s.ios.deployment_target = '8.0'
s.dependency 'React'
s.dependency 'FBAudienceNetwork'
s.pod_target_xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '${PODS_ROOT}/FBAudienceNetwork/**' }
s.preserve_paths = 'Readme.md', 'LICENSE', 'package.json'
s.source_files = 'src/ios/**/*.{h,m}'
s.exclude_files = 'src/android/*'
end