-
Notifications
You must be signed in to change notification settings - Fork 0
/
DYFSwiftKeychain.podspec
52 lines (37 loc) · 1.71 KB
/
DYFSwiftKeychain.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
45
46
47
48
49
50
51
52
Pod::Spec.new do |spec|
spec.name = "DYFSwiftKeychain"
spec.version = "1.2.0"
spec.summary = "[Swift] A library for storing text and data in Keychain."
spec.description = <<-DESC
TODU: [Swift] This library is used to store text and data in Keychain securely for iOS, OS X, tvOS and watchOS.
DESC
spec.homepage = "https://github.com/itenfay/DYFSwiftKeychain"
# spec.screenshots = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "Tenfay" => "itenfay@163.com" }
# Or just: spec.author = "Tenfay"
# spec.authors = { "Tenfay" => "itenfay@163.com" }
# spec.social_media_url = "https://twitter.com/Tenfay"
# spec.platform = :ios
# spec.platform = :ios, "5.0"
spec.ios.deployment_target = "8.0"
spec.osx.deployment_target = "10.10"
spec.watchos.deployment_target = "3.0"
spec.tvos.deployment_target = "9.0"
spec.source = { :git => "https://github.com/itenfay/DYFSwiftKeychain.git", :tag => spec.version }
spec.source_files = "SwiftKeychain/*.swift"
# spec.exclude_files = "Classes/Exclude"
# spec.public_header_files = "Classes/**/*.h"
# spec.resource = "icon.png"
# spec.resources = "Resources/*.png"
# spec.preserve_paths = "FilesToSave", "MoreFilesToSave"
spec.framework = "Security"
# spec.frameworks = "SomeFramework", "AnotherFramework"
# spec.library = "iconv"
# spec.libraries = "iconv", "xml2"
#spec.swift_versions = ['4.2', '5.0']
spec.swift_version = '5.0'
spec.requires_arc = true
# spec.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }
# spec.dependency "JSONKit", "~> 1.4"
end