-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathTTBaseUIKit.podspec
More file actions
19 lines (18 loc) · 901 Bytes
/
TTBaseUIKit.podspec
File metadata and controls
19 lines (18 loc) · 901 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = "TTBaseUIKit"
s.version = "2.1.0"
s.summary = "Custom UIKit, SwiftUIView"
s.description = "BaseUIView, BaseUILable, BaseUIButton, BaseUITableView"
s.homepage = "https://github.com/tqtuan1201/TTBaseUIKit"
s.license = "MIT"
s.author = { "Truong Quang Tuan" => "truongquangtuanit@gmail.com" }
s.platform = :ios, "14.0"
s.source = { :git => "https://github.com/tqtuan1201/TTBaseUIKit.git", :tag => "#{s.version}" }
s.source_files = "Sources/TTBaseUIKit/**/*.{swift}"
s.exclude_files = "Sources/TTBaseUIKit/**/*.plist"
s.swift_version = '5.0'
#s.resources = 'Sources/TTBaseUIKit/Support/Fonts/*{.ttf}'
s.resource_bundle = { 'TTBaseUIKit' => ['Sources/TTBaseUIKit/**/*.{ttf}','Sources/TTBaseUIKit/**/*.{png}'] }
s.ios.deployment_target = '14.0'
s.frameworks = 'UIKit', 'SwiftUI', 'Foundation'
end