Top Level Namespace
Defined Under Namespace
Modules: AnnFlutterFlavor, Fastlane, FastlaneFlutterFlavor
Instance Method Summary collapse
-
#annai_ios_podfile_setup(installer) ⇒ Object
Accessible directly in the Podfile’s post_install block.
Instance Method Details
#annai_ios_podfile_setup(installer) ⇒ Object
Accessible directly in the Podfile’s post_install block.
15 16 17 18 19 20 21 22 23 |
# File 'lib/fastlane/plugin/ann_flutter_flavor.rb', line 15 def annai_ios_podfile_setup(installer) if defined?(FastlaneFlutterFlavor::PodspecBridge) FastlaneFlutterFlavor::PodspecBridge.apply_build_settings(installer) else # Fallback if Fastlane UI isn't loaded msg = "[Annai] Bridge not found. Check gem installation." defined?(UI) ? UI.error(msg) : puts("\e[31m#{msg}\e[0m") end end |