forked from project-imas/encrypted-core-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
EncryptedCoreData.podspec
30 lines (24 loc) · 1.12 KB
/
EncryptedCoreData.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
Pod::Spec.new do |s|
s.name = 'EncryptedCoreData'
s.version = '3.1'
s.license = 'Apache-2.0'
s.summary = 'iOS Core Data encrypted SQLite store using SQLCipher'
s.description = %[
Provides a Core Data store that encrypts all data that is persisted. Besides the initial setup, the usage is exactly the same as Core Data and can be used in existing projects that use Core Data.
]
s.homepage = 'https://github.com/project-imas/encrypted-core-data/'
s.authors = {
'MITRE' => '[email protected]'
}
s.source = { :git => 'https://github.com/project-imas/encrypted-core-data.git', :tag => '3.1' }
s.frameworks = ['CoreData', 'Security']
s.requires_arc = true
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.source_files = 'Incremental Store/**/*.{h,m}'
s.public_header_files = 'Incremental Store/EncryptedStore.h'
s.dependency 'SQLCipher', '~> 3.4.0'
s.xcconfig = {
'OTHER_CFLAGS' => '$(inherited) -DSQLITE_HAS_CODEC -DSQLCIPHER_CRYPTO_CC'
}
end