Skip to content

Commit

Permalink
replace pyaxmlparser by androguard for further debian packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
matlink committed Mar 24, 2018
1 parent 2db8cc6 commit 675ac04
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 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
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
install_requires=[
'protobuf',
'gpapi == 0.4.2',
'pyaxmlparser',
'androguard',
'clint',
],
)

0 comments on commit 675ac04

Please sign in to comment.