-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathreact-native-admobile.podspec
More file actions
41 lines (33 loc) · 1.42 KB
/
Copy pathreact-native-admobile.podspec
File metadata and controls
41 lines (33 loc) · 1.42 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# react-native-admobile.podspec
require "json"
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
Pod::Spec.new do |s|
s.name = "react-native-admobile"
s.version = package["version"]
s.summary = package["description"]
s.description = <<-DESC
react-native-admobile
DESC
s.homepage = "https://github.com/github_account/react-native-admobile"
# brief license entry:
s.license = "MIT"
# optional - use expanded license entry instead:
# s.license = { :type => "MIT", :file => "LICENSE" }
s.authors = { "Your Name" => "yourname@email.com" }
s.platforms = { :ios => "9.0" }
s.source = { :git => "https://github.com/github_account/react-native-admobile.git", :tag => "#{s.version}" }
s.source_files = "ios/**/*.{h,c,cc,cpp,m,mm,swift}"
s.requires_arc = true
# s.resource_bundles= {
# 'SST'=>['ios/SST/Assets/*.{png,jpg,jpeg,storyboard,xib,xcassets}']
# }
s.dependency "React"
# ...
s.dependency "ADSuyiSDK",'~> 4.0.9.03183'# 26.5.30
s.dependency "ADSuyiSDK/ADSuyiSDKPlatforms/tianmu"
s.dependency 'ADSuyiSDK/ADSuyiSDKPlatforms/bu' # 穿山甲(头条)
s.dependency 'ADSuyiSDK/ADSuyiSDKPlatforms/gdt' # 优量汇(广点通)
# s.dependency 'ADSuyiSDK/ADSuyiSDKPlatforms/baidu' # 百度
# s.dependency 'ADSuyiSDK/ADSuyiSDKPlatforms/ks' # 快手
# s.dependency "ADSuyiSDK/ADSuyiSDKPlatforms/admobile"
end