-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathDimina.podspec
More file actions
31 lines (24 loc) · 1005 Bytes
/
Dimina.podspec
File metadata and controls
31 lines (24 loc) · 1005 Bytes
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
Pod::Spec.new do |s|
s.name = 'Dimina'
s.version = '1.1.3'
s.summary = 'DiDi Mini Program Framework'
s.description = <<-DESC
DiDi Mini Program Framework for iOS platform.
DESC
s.homepage = 'https://github.com/didi/dimina'
s.license = { :type => 'Apache-2.0', :file => 'LICENSE' }
s.author = { 'Lehem' => 'lehemyang@gmail.com' }
s.source = { :git => 'https://github.com/didi/dimina.git', :tag => "v#{s.version}" }
s.ios.deployment_target = '14.0'
s.swift_version = '5.0'
s.resource_bundles = {
'DiminaAssets' => ['iOS/dimina/Resources/Assets.xcassets'],
'DiminaJsSdk' => ['shared/jssdk/**/*']
}
s.frameworks = 'UIKit', 'Foundation'
s.dependency 'MMKV', '2.2.2'
s.dependency 'SSZipArchive', '2.4.3'
s.dependency 'Alamofire', '5.10.2'
# Core subspecs
s.source_files = 'iOS/dimina/DiminaKit/**/*.swift'
end