Skip to content

Commit

Permalink
fix permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
david-lev committed Nov 15, 2022
1 parent 55726c4 commit a94e207
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion aapyt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
__copyright__ = f'Copyright {datetime.now().year} david-lev'
__license__ = 'MIT'
__title__ = 'aapyt'
__version__ = '0.1.4'
__version__ = '0.1.5'
2 changes: 1 addition & 1 deletion aapyt/aapyt.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def get_apk_info(apk_path: str, as_dict: bool = False, aapt_path: str = None) ->
install_location=InstallLocation(data['install_location'][0]) if data.get(
'install_location') else InstallLocation.AUTO,
labels={lang: label for lang, label in data['labels']} if data.get('labels') else None,
permissions=tuple(data['uses_permissions']) if data.get('uses_permissions') else None,
permissions=tuple(data['permissions']) if data.get('permissions') else None,
libraries=tuple(data['libraries']) if data.get('libraries') else None,
features=tuple(data['features']) if data.get('features') else None,
launchable_activity=data['launchable_activity'][0] if data.get('launchable_activity') else None,
Expand Down

0 comments on commit a94e207

Please sign in to comment.