-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSimpleEncrypter.podspec
More file actions
25 lines (20 loc) · 912 Bytes
/
Copy pathSimpleEncrypter.podspec
File metadata and controls
25 lines (20 loc) · 912 Bytes
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
Pod::Spec.new do |s|
s.name = 'SimpleEncrypter'
s.version = '1.4.1'
s.summary = 'A simple protocol for Data->Data encrypt.'
s.description = <<-DESC
This is designed for my apps, so that I can easily change real encrypter.
DESC
s.homepage = 'https://github.com/1fr3dg/SimpleEncrypter'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Alfred Gao' => 'alfredg@alfredg.cn' }
s.source = { :git => 'https://github.com/1fr3dg/SimpleEncrypter.git', :tag => s.version.to_s }
s.ios.deployment_target = '11.0'
s.osx.deployment_target = '10.14'
s.source_files = 'Sources/*'
s.swift_version = '4.2'
s.dependency 'CryptoSwift'
#s.dependency 'SwiftCompressor'
#s.dependency 'GzipSwift'
end