forked from salemove/ios-sdk-widgets
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
42 lines (33 loc) · 997 Bytes
/
Podfile
File metadata and controls
42 lines (33 loc) · 997 Bytes
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
source 'https://github.com/salemove/glia-ios-podspecs.git'
source 'https://github.com/CocoaPods/Specs.git'
project 'GliaWidgets.xcodeproj'
platform :ios, '12.0'
# ignore all warnings from all pods
inhibit_all_warnings!
use_frameworks!
target 'TestingApp' do
pod 'PureLayout', '~> 3.1'
end
target 'GliaWidgets' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
pod 'PureLayout', '~> 3.1'
pod 'SalemoveSDK'
pod 'lottie-ios', '3.2.3'
end
target 'GliaWidgetsTests' do
use_frameworks!
end
target 'SnapshotTests' do
use_frameworks!
pod 'AccessibilitySnapshot', '0.5.0'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['ONLY_ACTIVE_ARCH'] = 'NO'
config.build_settings['BUILD_LIBRARY_FOR_DISTRIBUTION'] = 'YES'
config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET'
end
end
end