Skip to content
This repository was archived by the owner on Dec 19, 2023. It is now read-only.

Add now required flutter post install call to Podfile #138

Merged
merged 2 commits into from
Sep 11, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion newsfeed_ios/Podfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Uncomment the next line to define a global platform for your project
platform :ios, '9.0'
platform :ios, '11.0'

target 'newsfeed_app' do
# Comment the next line if you don't want to use dynamic frameworks
Expand All @@ -22,3 +22,7 @@ target 'newsfeed_app' do
end

end

post_install do |installer|
flutter_post_install(installer) if defined?(flutter_post_install)
end