I'm trying to setup CI-CD for firebase app distribution on my local system.
fastlane-plugin-firebase_app_distribution
plugin can't be found.
Error loading plugin 'fastlane-plugin-firebase_app_distribution': cannot load such file -- fastlane/plugin/firebase_app_distribution
+-------------------------------------------+-----------+------------------+
| Used plugins |
+-------------------------------------------+-----------+------------------+
| Plugin | Version | Action |
+-------------------------------------------+-----------+------------------+
| fastlane-plugin-firebase_app_distribution | undefined | No actions found |
+-------------------------------------------+-----------+------------------+
What should I do?
fastlane add_plugin fastlane-plugin-firebase_app_distribution
? Or try to execute:sudo fastlane install_plugins
. Seems like others have the same issue: github.com/fastlane/fastlane-plugin-firebase_app_distribution/… – Chiousudo fastlane install_plugins
worked for installing. But, when I runbundle exec fastlane testFlightRelease
it throws same error. – Knowlebundle exec fastlane install_plugins
– Chiou