From 9e46c0aa0154648e19f5b4f4968e634853c14e42 Mon Sep 17 00:00:00 2001 From: Julian Raufelder Date: Sat, 28 Dec 2024 00:10:50 +0100 Subject: [PATCH] Correct method name of extract_apk_from --- lib/fastlane/plugin/bundletool/actions/bundletool_action.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/fastlane/plugin/bundletool/actions/bundletool_action.rb b/lib/fastlane/plugin/bundletool/actions/bundletool_action.rb index 6475763..a2dc9bc 100644 --- a/lib/fastlane/plugin/bundletool/actions/bundletool_action.rb +++ b/lib/fastlane/plugin/bundletool/actions/bundletool_action.rb @@ -51,7 +51,7 @@ def self.run(params) return unless download_bundletool(bundletool_version, download_url, bundletool_filename, installation_path) - extract_universal_apk_from(aab_path, output_path, keystore_info, bundletool_filename, installation_path, universal_apk) + extract_apk_from(aab_path, output_path, keystore_info, bundletool_filename, installation_path, universal_apk) end def self.validate_aab!(aab_path) @@ -78,7 +78,7 @@ def self.download_bundletool(version, download_url, bundletool_filename, cache_p return false end - def self.extract_universal_apk_from(aab_path, apk_output_path, keystore_info, bundletool_filename, installation_path, universal_apk) + def self.extract_apk_from(aab_path, apk_output_path, keystore_info, bundletool_filename, installation_path, universal_apk) aab_absolute_path = Pathname.new(File.expand_path(aab_path)).to_s apk_output_absolute_path = Pathname.new(File.expand_path(apk_output_path)).to_s output_path = run_bundletool!(aab_absolute_path, keystore_info, bundletool_filename, installation_path, universal_apk)