Skip to content

Instantly share code, notes, and snippets.

@alokc83
Created October 30, 2018 21:03
Show Gist options
  • Save alokc83/933f0605a0932c9e0050c3dbab5ac339 to your computer and use it in GitHub Desktop.
Save alokc83/933f0605a0932c9e0050c3dbab5ac339 to your computer and use it in GitHub Desktop.
Podfile contents
#Cococapods content when using Cocoapods's Rome
#new tool that create fremeworks from Pods
# Uncomment the next line to define a global platform for your project
platform :ios, '10.0'
plugin 'cocoapods-rome', { :pre_compile => Proc.new { |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '4.2'
end
end
installer.pods_project.save
},
dsym: true,
configuration: 'Release'
}
target 'RomeTest' do
pod 'Firebase'
# Pods for RomeTest
target 'RomeTestTests' do
inherit! :search_paths
# Pods for testing
end
target 'RomeTestUITests' do
inherit! :search_paths
# Pods for testing
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment