forked from rakutentech/ios-miniapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MiniApp.podspec
28 lines (23 loc) · 1 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
#
# 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.0.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 }
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}'
s.resource_bundle = {"Localization" => ["MiniApp/*.lproj/*.strings"]}
s.dependency 'RSDKUtils', '>= 1.1.0'
s.dependency 'ZIPFoundation'
end