-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAutoFlex.podspec
44 lines (35 loc) · 1.65 KB
/
AutoFlex.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#
# Be sure to run `pod lib lint AutoFlex.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 = 'AutoFlex'
s.version = '0.3.6'
s.summary = 'An auto layout framework.'
s.description = <<-DESC
A Swift Autolayout Library for iOS, tvOS and macOS.
DESC
s.homepage = 'https://github.com/liam-i/AutoFlex'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Liam' => '[email protected]' }
s.source = { :git => 'https://github.com/liam-i/AutoFlex.git', :tag => s.version.to_s }
# s.documentation_url = 'https://liam-i.github.io/AutoFlex/main/documentation/autoflex'
# s.screenshots = 'https://raw.githubusercontent.com/wiki/liam-i/AutoFlex/Screenshots/1-1.png'
s.social_media_url = "https://liam-i.github.io"
# 1.12.0: Ensure developers won't hit CocoaPods/CocoaPods#11402 with the resource bundle for the privacy manifest.
# 1.13.0: visionOS is recognized as a platform.
s.cocoapods_version = '>= 1.13.0'
s.ios.deployment_target = '12.0'
s.tvos.deployment_target = '12.0'
s.macos.deployment_target = '11.0'
s.visionos.deployment_target = "1.0"
s.swift_versions = ['5.0']
s.source_files = 'Sources/**/*.swift'
s.resource_bundles = {'AutoFlex' => ['Sources/PrivacyInfo.xcprivacy']}
# s.public_header_files = 'Sources/Classes/**/*.h'
# s.frameworks = 'UIKit', 'MapKit'
# s.dependency 'Alamofire', '~> 5.4.4'
end