Podfile 420 Bytes
Newer Older
1 2 3 4 5 6 7 8
platform :ios, '12.0'

flutter_application_path = 'flutterapp/'

load File.join(flutter_application_path, '.ios', 'Flutter', 'podhelper.rb')

target 'ios_add2app' do
  install_all_flutter_pods(flutter_application_path)
9
  pod 'EarlGreyApp'
10 11 12
end

target 'ios_add2appTests' do
13
  install_flutter_engine_pod(flutter_application_path)
14
  pod 'EarlGreyTest'
15
end
16 17 18 19

post_install do |installer|
  flutter_post_install(installer)
end