Skip to content

Commit 675ac04

Browse files
committed
replace pyaxmlparser by androguard for further debian packaging
1 parent 2db8cc6 commit 675ac04

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

gplaycli/gplaycli.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
from gpapi.googleplay import RequestError
3333
from google.protobuf.message import DecodeError
3434
from pkg_resources import get_distribution, DistributionNotFound
35-
from pyaxmlparser import APK
35+
from androguard.core.bytecodes.apk import APK
3636

3737
from clint.textui import progress
3838

@@ -494,7 +494,7 @@ def analyse_local_apks(self, list_of_apks, download_folder):
494494
apk = APK(filepath)
495495
packagename = apk.package
496496
package_bunch.append(packagename)
497-
version_codes.append(util.vcode(apk.version_code))
497+
version_codes.append(util.vcode(apk.get_androidversion_code()))
498498

499499
# BulkDetails requires only one HTTP request
500500
# Get APK info from store

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
protobuf
22
gpapi
3-
pyaxmlparser
3+
androguard
44
clint

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
install_requires=[
3434
'protobuf',
3535
'gpapi == 0.4.2',
36-
'pyaxmlparser',
36+
'androguard',
3737
'clint',
3838
],
3939
)

0 commit comments

Comments
 (0)