forked from rakutentech/ios-miniapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MiniApp.podspec
35 lines (30 loc) · 1.07 KB
/
MiniApp.podspec
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
#
# Be sure to run `pod lib lint MiniApp.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'MiniApp'
s.version = '2.6.0'
s.authors = "Rakuten Ecosystem Mobile"
s.summary = "Rakuten's Mini App SDK"
s.homepage = "https://github.com/rakutentech/ios-miniapp"
s.license = {
:type => 'MIT',
:file => 'LICENSE'
}
s.source = {
:git => "https://github.com/rakutentech/ios-miniapp.git",
:tag => 'v' + s.version.to_s,
:submodules => true
}
s.documentation_url = "https://rakutentech.github.io/ios-miniapp/"
s.ios.deployment_target = '11.0'
s.source_files = 'MiniApp/Classes/**/*.swift'
s.resources = ['MiniApp/**/*.{xcassets,js,pdf,xib}','js-miniapp/bridge.js']
s.resource_bundle = {"Localization" => ["MiniApp/*.lproj/*.strings"]}
s.dependency 'RSDKUtils', '>= 1.1.0'
s.dependency 'ZIPFoundation'
end