I install the plugin using the following steps:
fastlane add_plugin store_sizer
fastlane install_plugins
bundle exec fastlane test archive_path:MyArchiveName.xcarchive
In my Fastfile I have
default_platform(:ios)
platform :ios do
lane :test do |options|
store_size_xcarchive(archive_path: options[:archive_path])
store_size_xcarchive_check
end
end
However I get the following error:
bundle exec fastlane test archive_path:SizeTest.xcarchive
[✔] 🚀
[15:46:17]: ------------------------------
[15:46:17]: --- Step: default_platform ---
[15:46:17]: ------------------------------
[15:46:17]: Driving the lane 'ios test' 🚀
+------------------+----------+
| Lane Context |
+------------------+----------+
| DEFAULT_PLATFORM | ios |
| PLATFORM_NAME | ios |
| LANE_NAME | ios test |
+------------------+----------+
[15:46:17]: Could not find action, lane or variable 'store_size_xcarchive'. Check out the documentation for more details: https://docs.fastlane.tools/actions
I install the plugin using the following steps:
fastlane add_plugin store_sizerfastlane install_pluginsbundle exec fastlane test archive_path:MyArchiveName.xcarchiveIn my Fastfile I have
However I get the following error: