session-ios/Podfile

73 lines
2.9 KiB
Plaintext
Raw Normal View History

2018-02-23 18:33:39 +01:00
platform :ios, '9.0'
source 'https://github.com/CocoaPods/Specs.git'
2014-05-06 19:41:08 +02:00
use_frameworks!
def shared_pods
# OWS Pods
2018-09-28 16:03:06 +02:00
pod 'SignalCoreKit', git: 'https://github.com/signalapp/SignalCoreKit.git', testspecs: ["Tests"]
2018-09-21 21:41:10 +02:00
# pod 'SignalCoreKit', path: '../SignalCoreKit', testspecs: ["Tests"]
2018-01-24 22:05:28 +01:00
# pod 'SQLCipher', path: '../sqlcipher2'
2018-01-18 22:32:15 +01:00
pod 'SQLCipher', :git => 'https://github.com/sqlcipher/sqlcipher.git', :commit => 'd5c2bec'
2018-01-25 17:07:22 +01:00
# pod 'YapDatabase/SQLCipher', path: '../YapDatabase'
pod 'YapDatabase/SQLCipher', :git => 'https://github.com/signalapp/YapDatabase.git', branch: 'signal-release'
2018-09-28 16:03:06 +02:00
# TODO: Integrate tests.
2018-10-02 19:33:30 +02:00
pod 'AxolotlKit', git: 'https://github.com/signalapp/SignalProtocolKit.git', branch: 'master'
2018-09-25 19:56:31 +02:00
# pod 'AxolotlKit', path: '../SignalProtocolKit', testspecs: ["Tests"]
2018-09-28 16:03:06 +02:00
pod 'HKDFKit', git: 'https://github.com/signalapp/HKDFKit.git', testspecs: ["Tests"]
2018-09-25 19:58:20 +02:00
# pod 'HKDFKit', path: '../HKDFKit', testspecs: ["Tests"]
2018-09-28 16:03:06 +02:00
pod 'Curve25519Kit', git: 'https://github.com/signalapp/Curve25519Kit', testspecs: ["Tests"]
2018-09-25 19:58:20 +02:00
# pod 'Curve25519Kit', path: '../Curve25519Kit', testspecs: ["Tests"]
2018-09-28 16:03:06 +02:00
# TODO: Use public repo.
2018-10-01 15:12:38 +02:00
pod 'SignalMetadataKit', git: 'https://github.com/signalapp/SignalMetadataKit', testspecs: ["Tests"]
2018-09-25 19:58:20 +02:00
# pod 'SignalMetadataKit', path: '../SignalMetadataKit', testspecs: ["Tests"]
2018-09-20 18:53:03 +02:00
pod 'SignalServiceKit', path: '.', testspecs: ["Tests"]
pod 'GRKOpenSSLFramework', git: 'https://github.com/signalapp/GRKOpenSSLFramework'
#pod 'GRKOpenSSLFramework', path: '../GRKOpenSSLFramework'
# third party pods
pod 'AFNetworking', inhibit_warnings: true
pod 'Mantle', :inhibit_warnings => true
2018-01-18 22:32:15 +01:00
# pod 'YapDatabase/SQLCipher', :inhibit_warnings => true
pod 'PureLayout', :inhibit_warnings => true
pod 'Reachability', :inhibit_warnings => true
2018-08-03 22:41:06 +02:00
# pod 'SocketRocket', :git => 'https://github.com/facebook/SocketRocket.git', inhibit_warnings: true
pod 'SocketRocket', :git => 'https://github.com/signalapp/SocketRocket.git', branch: 'mkirk/handle-sec-err', inhibit_warnings: true
2018-04-03 22:26:07 +02:00
pod 'YYImage', :inhibit_warnings => true
end
target 'Signal' do
shared_pods
2018-01-04 21:16:24 +01:00
pod 'SSZipArchive', :inhibit_warnings => true
target 'SignalTests' do
inherit! :search_paths
end
end
target 'SignalShareExtension' do
shared_pods
end
target 'SignalMessaging' do
shared_pods
end
post_install do |installer|
enable_extension_support_for_purelayout(installer)
end
# PureLayout by default makes use of UIApplication, and must be configured to be built for an extension.
def enable_extension_support_for_purelayout(installer)
installer.pods_project.targets.each do |target|
if target.name.end_with? "PureLayout"
target.build_configurations.each do |build_configuration|
if build_configuration.build_settings['APPLICATION_EXTENSION_API_ONLY'] == 'YES'
build_configuration.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] = ['$(inherited)', 'PURELAYOUT_APP_EXTENSIONS=1']
end
end
end
end
end