Skip to content

Commit

Permalink
Update the parse_resource reference which was named parse_resouce in …
Browse files Browse the repository at this point in the history
…older apkutils versions
  • Loading branch information
Grennith committed Feb 20, 2024
1 parent cf6c164 commit cb86902
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mapadroid/mad_apk/wizard.py
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,7 @@ def normalize_package(self) -> NoReturn:
try:
with zip_data.open(item, 'r') as fh:
bytes_of_apk = io.BytesIO(fh.read())
apk = apkutils.APK().from_io(bytes_of_apk).parse_resouce()
apk = apkutils.APK().from_io(bytes_of_apk).parse_resource()
manifest = apk.get_manifest()
try:
self.package_version = manifest['@android:versionName']
Expand Down

0 comments on commit cb86902

Please sign in to comment.