class Headdesk::Analyze

analyze an APK/IPA

Public Class Methods

at(path) click to toggle source
# File lib/headdesk/analyze.rb, line 11
def self.at(path)
  begin
    return Headdesk::Apk.new(path).analyze
  rescue
  end
  begin
    return Headdesk::Ipa.new(path).analyze
  rescue
  end
  throw CliError.new('Path did not contain an unpacked IPA or APK.')
end