mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 22:42:29 +03:00
replace deprecated get_element() which was removed in 4.x
/usr/lib/python3/dist-packages/androguard/core/bytecodes/apk.py:884: DeprecationWarning: This method is deprecated since 3.3.5. It was added in 3.3.5. Debian/bullseye and Ubuntu/20.04/focal both include new enough versions. Debian/buster's is too old (3.3.3).
This commit is contained in:
parent
5b7abc0423
commit
1c84f63247
2 changed files with 2 additions and 2 deletions
|
@ -1778,7 +1778,7 @@ def scan_apk_androguard(apk, apkfile):
|
||||||
if maxSdkVersion is not None:
|
if maxSdkVersion is not None:
|
||||||
apk['maxSdkVersion'] = maxSdkVersion
|
apk['maxSdkVersion'] = maxSdkVersion
|
||||||
|
|
||||||
icon_id_str = apkobject.get_element("application", "icon")
|
icon_id_str = apkobject.get_attribute_value("application", "icon")
|
||||||
if icon_id_str:
|
if icon_id_str:
|
||||||
try:
|
try:
|
||||||
icon_id = int(icon_id_str.replace("@", "0x"), 16)
|
icon_id = int(icon_id_str.replace("@", "0x"), 16)
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -92,7 +92,7 @@ setup(
|
||||||
],
|
],
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'appdirs',
|
'appdirs',
|
||||||
'androguard >= 3.3.3',
|
'androguard >= 3.3.5',
|
||||||
'clint',
|
'clint',
|
||||||
'defusedxml',
|
'defusedxml',
|
||||||
'GitPython',
|
'GitPython',
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue