-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathRNIronsource.podspec
More file actions
23 lines (19 loc) · 722 Bytes
/
RNIronsource.podspec
File metadata and controls
23 lines (19 loc) · 722 Bytes
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 = "RNIronsource"
s.version = package["version"]
s.summary = package["title"]
s.description = package["description"]
s.homepage = package["homepage"]
# s.license = "MIT"
s.license = { :type => package["license"], :file => package["licenseFilename"] }
s.author = package["author"]
s.platform = :ios, "11.0"
s.source = { :git => package["repository"]["url"], :tag => "#{s.version}" }
s.compiler_flags = '–ObjC'
s.source_files = "ios/**/*.{h,m}"
s.requires_arc = true
s.dependency "React"
s.dependency 'IronSourceSDK','6.7.9.3'
end