Method: ApkResources#get_all_types

Defined in:
lib/apktools/apkresources.rb

#get_all_typesObject

Return hash of all the type values in the file keyed by package id



187
188
189
190
191
192
193
194
# File 'lib/apktools/apkresources.rb', line 187

def get_all_types
  types = Hash.new()
  @packages.each do |key, value|
    types[key] = value.stringpool_typestrings.values
  end

  return types
end