-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPodfile
35 lines (31 loc) · 1.02 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
platform :ios, '9.0'
use_frameworks!
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
target "Push" do
pod 'AFNetworking'
pod 'Masonry'
pod 'SVPullToRefresh'
pod 'MBProgressHUD'
pod 'FBSDKCoreKit'
pod 'FBSDKLoginKit'
pod 'FBSDKShareKit'
pod 'Fabric'
pod 'Crashlytics'
#pod 'HockeySDK'
pod 'youtube-ios-player-helper', '~> 0.1.5'
pod 'DateTools', :git => 'https://github.com/PushOCCRP/DateTools.git'#, :commit => 'f50ae33def9b8b50a5fbf9e3dadcbf19796f3f35'
#pod 'DateTools', :path => '~/Repositories/DateTools'
# Old version of HTMLKit leaks memory for some reason. updated from 0.9 -> 2.1
pod 'HTMLKit', '~> 2.1'
pod 'CPAProxy', :git => 'https://github.com/ursachec/CPAProxy.git'
#pod 'CPAProxy', :path => '../CPAProxy'
pod 'YAML-Framework'
pod '1PasswordExtension', '~> 1.8.5'
pod 'Realm'
end