-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Podfile
48 lines (41 loc) · 960 Bytes
/
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
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'
use_frameworks!
def pods
pod 'AutoReview'
pod 'AudioBot'
pod 'AsyncDisplayKit'
pod 'Appsee'
pod 'DeviceGuru'
pod 'FXBlurView'
pod 'TPKeyboardAvoiding'
pod 'pop'
pod 'Base64'
pod 'SocketRocket'
pod 'JPush'
pod 'Fabric'
end
target 'Yep' do
pods
target 'YepTests' do
inherit! :search_paths
end
end
target 'FayeClient' do
pod 'SocketRocket'
pod 'Base64'
end
post_install do |installer|
puts 'Allow app extension api only:'
installer.pods_project.targets.each do |target|
case target.name
when 'Base64', 'SocketRocket'
target.build_configurations.each do |config|
config.build_settings['APPLICATION_EXTENSION_API_ONLY'] = 'YES'
puts 'X...' + target.name
end
else
puts '....' + target.name
end
end
end