forked from openedx-unsupported/edx-app-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
41 lines (35 loc) · 1.1 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
# Uncomment this line to define a global platform for your project
platform :ios, '9.0'
source 'https://github.com/CocoaPods/Specs.git'
project 'edX.xcodeproj'
target 'edX' do
pod 'Analytics', '~> 3.0.0'
pod 'Segment-GoogleAnalytics', '~> 1.0.0'
pod 'Crashlytics', '~> 3.10.1'
pod 'DateTools', '~> 1.6.1'
pod 'Fabric', '~> 1.7.6'
pod 'GoogleSignIn', '~> 2.4'
pod 'Masonry', '~> 0.6'
pod 'NewRelicAgent', '~> 4.1'
pod 'FBSDKCoreKit', '~> 4.42.0'
pod 'FBSDKLoginKit', '~> 4.42.0'
pod 'Smartling.i18n', '~> 1.0'
pod 'Firebase/Core', '= 5.4.1'
pod 'Branch', '= 0.25.5'
end
target 'edXTests' do
use_frameworks!
pod 'iOSSnapshotTestCase', '= 5.0.2'
pod 'OHHTTPStubs', '~> 4.0'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
for i in 0..target.headers_build_phase.files.length - 1
build_file = target.headers_build_phase.files[i]
build_file.settings = { 'ATTRIBUTES' => ['Public']}
end
target.build_configurations.each do |config|
config.build_settings['GCC_WARN_INHIBIT_ALL_WARNINGS'] = "YES"
end
end
end