-
Notifications
You must be signed in to change notification settings - Fork 2
/
HDeviceIdentifier.podspec
29 lines (21 loc) · 1.08 KB
/
HDeviceIdentifier.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
Pod::Spec.new do |spec|
spec.name = "HDeviceIdentifier"
spec.version = "0.1.2"
spec.summary = "封装了持久化保存/查看设备唯一标识的功能, 并且可以判断应用是不是第一次安装 (UUID+KeyChain)"
# spec.description = <<-DESC
# DESC
spec.homepage = "https://blog.wskfz.com/index.php/archives/28/"
spec.license = "MIT"
spec.author = { "Hext123" => "[email protected]" }
spec.social_media_url = "https://blog.wskfz.com/"
spec.platform = :ios, "8.0"
spec.source = { :git => "https://github.com/Hext123/HDeviceIdentifier.git", :tag => spec.version.to_s }
spec.source_files = "HDeviceIdentifier/HDeviceIdentifierUtils/**/*.{h,m}"
spec.public_header_files = "HDeviceIdentifier/HDeviceIdentifierUtils/HDeviceIdentifier.h"
keychainUtils_files = 'HDeviceIdentifier/HDeviceIdentifierUtils/SFHFKeychainUtils.{h,m}'
spec.exclude_files = keychainUtils_files
spec.subspec 'SFHFKeychainUtils' do |sp|
sp.source_files = keychainUtils_files
sp.requires_arc = false
end
end