forked from ParisiLabs/wire-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
38 lines (26 loc) · 1.08 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
source 'https://github.com/CocoaPods/Specs.git'
def ios_pods
pod 'GoogleAPIClient/YouTube', '1.0.4', :inhibit_warnings => true
pod 'Localytics', '4.3.0', :inhibit_warnings => true
pod 'RBBAnimation', :git => 'https://github.com/wireapp/RBBAnimation', :commit => '7dd8d9a3cf610be5f7c1e4459692d555d70704c7'
pod 'ARCollectionViewMasonryLayout', :git => 'https://github.com/wireapp/ARCollectionViewMasonryLayout', :tag => '2.3.0'
pod 'SCSiriWaveformView', :git => 'https://github.com/wireapp/SCSiriWaveformView', :tag => 'v1.0.3'
end
target 'Wire-iOS' do
platform :ios, '9.0'
ios_pods
post_install do |installer_representation|
installer_representation.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['APPLICATION_EXTENSION_API_ONLY'] = 'NO'
end
end
end
end
target 'Wire-iOS-Tests' do
platform :ios, '9.0'
pod 'Localytics', '4.3.0', :inhibit_warnings => true
end
target 'WireExtensionComponents' do
platform :ios, '9.0'
end