Skip to content

Commit

Permalink
Correct method name of extract_apk_from
Browse files Browse the repository at this point in the history
  • Loading branch information
SailReal committed Dec 27, 2024
1 parent c9db80e commit 9e46c0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/fastlane/plugin/bundletool/actions/bundletool_action.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)
Expand Down

0 comments on commit 9e46c0a

Please sign in to comment.