Add-to-app iOS flutter_post_install post_install hook (#1079)

pull/1084/head
Jenn Magder 2 years ago committed by GitHub
parent 06065d7e0a
commit c6bee7aa93
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -10,3 +10,7 @@ target 'IosBooks' do
# Pods for IosBooks
install_all_flutter_pods(flutter_application_path)
end
post_install do |installer|
flutter_post_install(installer) if defined?(flutter_post_install)
end

@ -22,3 +22,7 @@ target 'IOSFullScreen' do
end
end
post_install do |installer|
flutter_post_install(installer) if defined?(flutter_post_install)
end

@ -9,3 +9,7 @@ target 'MultipleFluttersIos' do
use_frameworks!
install_all_flutter_pods(flutter_application_path)
end
post_install do |installer|
flutter_post_install(installer) if defined?(flutter_post_install)
end

@ -20,5 +20,8 @@ target 'IOSUsingPlugin' do
inherit! :search_paths
# Pods for testing
end
end
post_install do |installer|
flutter_post_install(installer) if defined?(flutter_post_install)
end

Loading…
Cancel
Save