Skip to content

Commit

Permalink
Version 3.22
Browse files Browse the repository at this point in the history
* switch from pyaxmlparser to androguard for further debian packaging
  • Loading branch information
matlink committed Mar 24, 2018
2 parents 2db8cc6 + 5725e5a commit 776c27a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions gplaycli/gplaycli.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
from gpapi.googleplay import RequestError
from google.protobuf.message import DecodeError
from pkg_resources import get_distribution, DistributionNotFound
from pyaxmlparser import APK
from androguard.core.bytecodes.apk import APK

from clint.textui import progress

Expand Down Expand Up @@ -494,7 +494,7 @@ def analyse_local_apks(self, list_of_apks, download_folder):
apk = APK(filepath)
packagename = apk.package
package_bunch.append(packagename)
version_codes.append(util.vcode(apk.version_code))
version_codes.append(util.vcode(apk.get_androidversion_code()))

# BulkDetails requires only one HTTP request
# Get APK info from store
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
protobuf
gpapi
pyaxmlparser
androguard
clint
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
sys.exit(1)

setup(name='GPlayCli',
version='3.21',
version='3.22',
description='GPlayCli, a Google play downloader command line interface',
author="Matlink",
author_email="[email protected]",
Expand All @@ -33,7 +33,7 @@
install_requires=[
'protobuf',
'gpapi == 0.4.2',
'pyaxmlparser',
'androguard',
'clint',
],
)

0 comments on commit 776c27a

Please sign in to comment.