Skip to content

Commit

Permalink
feat: 🎸 更新arsc中的entry的查找方式
Browse files Browse the repository at this point in the history
  • Loading branch information
laiyongbin committed Mar 27, 2020
1 parent b883734 commit 05274b3
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
6 changes: 4 additions & 2 deletions apkutils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,15 @@
import xmltodict
from anytree import Node, RenderTree
from anytree.resolver import Resolver
from cigam import Magic
from TextWizard import hash

from apkutils import apkfile
from apkutils.axml.arscparser import ARSCParser
from apkutils.axml.axmlparser import AXML
from apkutils.dex.dexparser import DexFile
from cigam import Magic
from TextWizard import hash

__VERSION__ = '0.7.0'

# 6E invoke-virtual 110
# 6F invoke-supper
Expand Down
4 changes: 2 additions & 2 deletions requirment.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
xmltodict
anytree
cigam
pyelftools
pyopenssl
anytree
TextWizard
xmltodict
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

from setuptools import find_packages, setup

from apkutils import __VERSION__


def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
Expand All @@ -10,7 +12,7 @@ def read(fname):
setup(
name="apkutils",

version='0.6.6',
version=__VERSION__,

description=("Utils for parsing apk."),
long_description=read('README.rst'),
Expand All @@ -33,11 +35,11 @@ def read(fname):
packages=find_packages(exclude=['contrib', 'docs', 'tests']),

install_requires=[
"xmltodict",
"anytree",
"cigam",
"pyelftools",
"pyopenssl",
"anytree",
"TextWizard",
"xmltodict",
],
)

0 comments on commit 05274b3

Please sign in to comment.