Skip to content

Commit

Permalink
switch back to pyaxmlparser as it will be packaged in debian
Browse files Browse the repository at this point in the history
  • Loading branch information
matlink committed May 15, 2018
1 parent 72206b3 commit b5dba03
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 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 androguard.core.bytecodes.apk import APK
from pyaxmlparser import APK

from . import util
from . import hooks
Expand Down Expand Up @@ -501,7 +501,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.get_androidversion_code()))
version_codes.append(util.vcode(apk.version_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,2 +1,2 @@
gpapi
androguard
pyaxmlparser
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@
],
install_requires=[
'gpapi == 0.4.2',
'androguard',
'pyaxmlparser',
],
)

0 comments on commit b5dba03

Please sign in to comment.