-
Notifications
You must be signed in to change notification settings - Fork 298
/
Tangram.podspec
28 lines (23 loc) · 1.08 KB
/
Tangram.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
Pod::Spec.new do |s|
s.name = "Tangram"
s.version = "2.1.5"
s.summary = "Tangram is a modular UI solution for building native page dynamically & quickly."
s.description = <<-DESC
Tangram is a modular UI solution for building native page dynamically & quickly.
And Tangram 2.x with VirtualView can create & release UI component dynamically.
The solution also have an implementation for Andriod platform.
DESC
s.homepage = "https://github.com/alibaba/Tangram-iOS"
s.license = { :type => 'MIT' }
s.author = { "fydx" => "[email protected]",
"HarrisonXi" => "[email protected]"}
s.platform = :ios
s.ios.deployment_target = '8.0'
s.requires_arc = true
s.source = { :git => "https://github.com/alibaba/Tangram-iOS.git", :tag => "2.1.5" }
s.resources = 'Tangram/Resources/*'
s.source_files = 'Tangram/**/*.{h,m}'
s.dependency 'SDWebImage', '~> 4.2'
s.dependency 'LazyScroll', '1.0.1'
s.dependency 'VirtualView', '1.2.7'
end