I created a flutter project and a Podfile was generated automatically. I need to add the following dependencies into my project,
pod 'GMGdtAdapter-Beta', '4.15.40.1'
pod 'GMKsAdapter-Beta', '3.3.76.1'
May I ask if I should add these two lines at the end of the auto-generated Profile? like
... ...
post_install do |installer|
installer.pods_project.targets.each do |target|
flutter_additional_ios_build_settings(target)
end
end
pod 'GMGdtAdapter-Beta', '4.15.40.1'
pod 'GMKsAdapter-Beta', '3.3.76.1'
Or if I should add them in the Runner target like,
... ...
target 'Runner' do
use_frameworks!
use_modular_headers!
pod 'GMGdtAdapter-Beta', '4.15.40.1'
pod 'GMKsAdapter-Beta', '3.3.76.1'
flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
target 'RunnerTests' do
inherit! :search_paths
end
end
... ...
Thanks in advance!