-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathPodfile
More file actions
executable file
·37 lines (30 loc) · 940 Bytes
/
Podfile
File metadata and controls
executable file
·37 lines (30 loc) · 940 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
#Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
workspace 'LoginRadiusSDK'
platform :ios, '11.0'
target 'ObjCDemo' do
project 'Example/ObjCDemo/ObjCDemo.xcodeproj'
pod 'LoginRadiusSDK', :path => './'
pod 'XLForm', '<= 3.3.0'
#pod 'Google/SignIn', '<= 4.1.0'
#pod 'TwitterKit', '<= 3.4.2'
end
target 'SwiftDemo' do
project 'Example/SwiftDemo/SwiftDemo.xcodeproj'
pod 'LoginRadiusSDK', :path => './'
pod 'Eureka'
pod 'SwiftyJSON', '<= 4.0'
pod 'Alamofire', '<= 4.8.2'
#pod 'Google/SignIn', '<= 4.1.0'
#pod 'TwitterKit', '<= 3.4.2'
post_install do |installer|
myTargets = ['Eureka']
installer.pods_project.targets.each do |target|
if myTargets.include? target.name
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '5.0'
end
end
end
end
end