-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPodfile
More file actions
executable file
·34 lines (22 loc) · 1.03 KB
/
Podfile
File metadata and controls
executable file
·34 lines (22 loc) · 1.03 KB
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
platform :ios, '10.0'
flutter_application_path = '../flutter_project'
load File.join(flutter_application_path, '.ios', 'Flutter', 'podhelper.rb')
target 'benjamina' do
use_frameworks!
install_all_flutter_pods(flutter_application_path)
pod 'RxSwift', '~> 5.0' # https://github.com/ReactiveX/RxSwift
pod 'RxCocoa', '~> 5.0'
pod 'NSObject+Rx', '~> 5.0' # https://github.com/RxSwiftCommunity/NSObject-Rx
pod 'RxAlertController', '~> 5.0' # https://github.com/evgeny-sureev/RxAlertController
pod 'Toast-Swift' # https://github.com/scalessec/Toast-Swift
pod 'SwifterSwift', '~> 5.0' # https://github.com/SwifterSwift/SwifterSwift
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['ENABLE_BITCODE'] = 'NO'
config.build_settings['ENABLE_TESTABILITY'] = 'YES'
config.build_settings['SWIFT_VERSION'] = '5.0'
end
end
end