加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
acrawriter.podspec 1.38 KB
一键复制 编辑 原始数据 按行查看 历史
vixentael 提交于 2019-03-07 19:09 . Update acrawriter.podspec (#325)
Pod::Spec.new do |s|
s.name = "acrawriter"
s.version = "1.0.3"
s.summary = "AcraWriter library for iOS: encrypts data into AcraStructs, allowing Acra to decrypt it"
s.description = "Part of Acra database protection suite: developers can encrypt the sensitive data by generating AcraStructs with AcraWriter anywhere across their apps. AcraServer or AcraTranslator can be used for decryption."
s.homepage = "https://cossacklabs.com"
# TODO: change on release :)
s.source = { :git => "https://github.com/cossacklabs/acra.git", :commit => 'd289875e36a4f3be61a0f307dfa19637d45cc321'}
s.license = { :type => 'Apache 2.0'}
s.author = {'cossacklabs' => 'info@cossacklabs.com'}
s.dependency 'themis', '~> 0.10.4'
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.9'
s.ios.frameworks = 'UIKit', 'Foundation', 'CoreFoundation'
s.source_files = "wrappers/objc/AcraWriter/*.{h,m}"
s.public_header_files = "wrappers/objc/AcraWriter/AcraWriter.h", "wrappers/objc/AcraWriter/AcraStruct.h"
# Enable bitcode
s.ios.pod_target_xcconfig = {'ENABLE_BITCODE' => 'YES' }
s.ios.xcconfig = { 'HEADER_SEARCH_PATHS' => '"${PODS_ROOT}/themis/src" "${PODS_ROOT}/themis/src/wrappers/themis/Obj-C"'}
s.osx.xcconfig = { 'HEADER_SEARCH_PATHS' => '"${PODS_ROOT}/themis/src" "${PODS_ROOT}/themis/src/wrappers/themis/Obj-C"'}
end
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化