-
Notifications
You must be signed in to change notification settings - Fork 1
/
Podfile
executable file
·92 lines (75 loc) · 3.28 KB
/
Podfile
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# Disable CocoaPods deterministic UUIDs as Pods are not checked in
ENV["COCOAPODS_DISABLE_DETERMINISTIC_UUIDS"] = "true"
# Disable Bitcode for all targets http://stackoverflow.com/a/32685434/805882
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['ENABLE_BITCODE'] = 'NO'
end
end
end
platform :ios, "8.0"
workspace ‘spreedbox’
use_frameworks!
source 'https://github.com/CocoaPods/Specs.git'
abstract_target 'ChatSecureCorePods' do
# User Interface
pod "Appirater", '~> 2.0'
pod 'OpenInChrome', '~> 0.0'
pod 'JTSImageViewController', '~> 1.4'
pod 'VTAcknowledgementsViewController', '~> 1.2'
pod 'BButton', '~> 4.0'
pod 'TUSafariActivity', '~> 1.0'
pod 'ARChromeActivity', '~> 1.0'
pod 'QRCodeReaderViewController', '~> 4.0'
pod 'ParkedTextField', '~> 0.3.1'
pod 'JSQMessagesViewController', :path => 'Submodules/JSQMessagesViewController/JSQMessagesViewController.podspec'
# Utility
# pod 'CocoaLumberjack/Swift', '~> 3.2.0'
pod 'CocoaLumberjack/Swift', :git => 'https://github.com/CocoaLumberjack/CocoaLumberjack.git', :commit => 'acc32864538c5d75b41a4bfa364b1431cf89954d' # Fixes compile error on Xcode 9
pod 'MWFeedParser', '~> 1.0'
pod 'Navajo', '~> 0.0'
pod 'BBlock', '~> 1.2'
pod 'KSCrash', '~> 1.15.3'
# Network
pod 'CocoaAsyncSocket', '~> 7.6.0'
pod 'ProxyKit/Client', '~> 1.2.0'
pod 'GCDWebServer', '~> 3.4'
# pod 'GCDWebServer/CocoaLumberjack', :git => 'https://github.com/ChatSecure/GCDWebServer.git', :branch => 'kdbertel-CocoaLumberjack3'
pod 'CPAProxy', :path => 'Submodules/CPAProxy/CPAProxy.podspec'
pod 'XMPPFramework', :path => 'Submodules/XMPPFramework/XMPPFramework.podspec'
pod 'ChatSecure-Push-iOS', :path => 'Submodules/ChatSecure-Push-iOS/ChatSecure-Push-iOS.podspec'
# Google Auth
pod 'gtm-http-fetcher', :podspec => 'Podspecs/gtm-http-fetcher.podspec'
pod 'gtm-oauth2', :podspec => 'Podspecs/gtm-oauth2.podspec'
# Storage
pod 'YapDatabase/SQLCipher', '~> 3.0.1'
# pod 'YapDatabase/SQLCipher', :git => 'https://github.com/yapstudios/YapDatabase.git', :commit => 'd632658'
pod 'libsqlfs/SQLCipher', :git => 'https://github.com/ChatSecure/libsqlfs.git', :branch => 'podspec-fix'
pod 'IOCipher/GCDWebServer', :path => 'Submodules/IOCipher/IOCipher.podspec'
pod 'YapTaskQueue/SQLCipher', :git => 'https://github.com/ChatSecure/YapTaskQueue.git', :branch => 'yap3'
# Crypto
pod 'SignalProtocolObjC', :path => 'Submodules/SignalProtocol-ObjC/SignalProtocolObjC.podspec'
pod 'OTRKit', :path => 'Submodules/OTRKit/OTRKit.podspec'
### Moved to Carthage ###
# pod 'AFNetworking', '~> 3.1'
# pod 'ZXingObjC', '~> 3.0'
# pod "SAMKeychain", '~> 1.5'
# pod 'MBProgressHUD', '~> 1.0'
# pod 'TTTAttributedLabel', '~> 2.0'
# pod 'PureLayout', '~> 3.0'
# pod 'uservoice-iphone-sdk', '~> 3.2'
# pod 'KVOController', '~> 1.0'
# pod 'XLForm', '~> 3.3'
# pod 'FormatterKit/TimeIntervalFormatter', '~> 1.8.2'
### Moved back to CocoaPods due to Swift 3->4 issues ###
pod 'Alamofire', '~> 4.4'
pod 'Kvitto', '~> 1.0'
project ‘Spreedbox.xcodeproj’
target 'ChatSecureCore'
target ‘Nextcloud’
#project ‘ChatSecure.xcodeproj’
#target 'ChatSecureCore'
#target 'ChatSecureTests'
#target 'ChatSecure'
end