Created
October 30, 2018 21:03
-
-
Save alokc83/933f0605a0932c9e0050c3dbab5ac339 to your computer and use it in GitHub Desktop.
Podfile contents
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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