forked from appodeal/react-native-appodeal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRNAppodeal.podspec
More file actions
23 lines (20 loc) · 806 Bytes
/
Copy pathRNAppodeal.podspec
File metadata and controls
23 lines (20 loc) · 806 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
s.name = "RNAppodeal"
s.version = package['version']
s.summary = "React Native plugin for Appodeal SDK"
s.description = <<-DESC
React Native plugin for Appodeal SDK. It supports interstitial, rewarded video and banner ads
DESC
s.homepage = "https://appodeal.com"
s.license = "MIT"
s.author = { "author" => "appodeal.com" }
s.platform = :ios, "13.0"
s.source = { :git => package['repository']['url'], :tag => "master" }
s.source_files = "ios/**/*.{h,m}"
s.requires_arc = true
s.static_framework = true
s.dependency "React"
s.dependency "Appodeal", "3.5.0"
s.dependency "APDIABAdapter", "3.5.0.0"
end