Skip to content

Commit

Permalink
Add-to-app iOS flutter_post_install post_install hook (#1079)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmagman committed Apr 15, 2022
1 parent 06065d7 commit c6bee7a
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 0 deletions.
4 changes: 4 additions & 0 deletions add_to_app/books/ios_books/Podfile
Expand Up @@ -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
4 changes: 4 additions & 0 deletions add_to_app/fullscreen/ios_fullscreen/Podfile
Expand Up @@ -22,3 +22,7 @@ target 'IOSFullScreen' do
end

end

post_install do |installer|
flutter_post_install(installer) if defined?(flutter_post_install)
end
4 changes: 4 additions & 0 deletions add_to_app/multiple_flutters/multiple_flutters_ios/Podfile
Expand Up @@ -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
3 changes: 3 additions & 0 deletions add_to_app/plugin/ios_using_plugin/Podfile
Expand Up @@ -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

0 comments on commit c6bee7a

Please sign in to comment.