-
Notifications
You must be signed in to change notification settings - Fork 0
/
AutoLayouts.podspec
24 lines (17 loc) · 931 Bytes
/
AutoLayouts.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
Pod::Spec.new do |spec|
spec.name = "AutoLayouts"
spec.version = "1.0.0"
spec.summary = "A short hand of handling constraint UIKit"
spec.description = <<-DESC
This CocoaPods library help to config the constraint. The purpose of this package is to ease of constraint management in UIKit
DESC
spec.homepage = "https://github.com/icungse/AutoLayouts"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "icung" => "saiful-islam@outlook.co.id" }
spec.ios.deployment_target = "12.0"
spec.swift_version = "5.8"
spec.source = { :git => "https://github.com/icungse/AutoLayouts.git", :tag => "#{spec.version}" }
spec.source_files = "AutoLayouts/**/*.{h,m,swift}"
spec.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
spec.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
end