mirror of
https://github.com/zhigang1992/InTime.git
synced 2026-01-12 16:32:37 +08:00
23 lines
537 B
Ruby
23 lines
537 B
Ruby
# Uncomment the next line to define a global platform for your project
|
|
# platform :ios, '9.0'
|
|
|
|
target 'FloatingToggl' do
|
|
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
|
|
use_frameworks!
|
|
|
|
# Pods for FloatingToggl
|
|
pod 'RxSwift'
|
|
pod 'RxCocoa'
|
|
pod 'KeychainSwift'
|
|
|
|
end
|
|
|
|
|
|
post_install do |installer|
|
|
installer.pods_project.targets.each do |target|
|
|
target.build_configurations.each do |config|
|
|
config.build_settings['SWIFT_VERSION'] = '3.2'
|
|
end
|
|
end
|
|
end
|