mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
16 lines
328 B
Ruby
16 lines
328 B
Ruby
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)
|
|
end
|
|
|
|
target 'ios_add2appTests' do
|
|
inherit! :search_paths
|
|
install_flutter_engine_pod
|
|
pod 'EarlGrey'
|
|
end
|