Bug or ??
Closed this issue · 0 comments
ForrestVV commented
I dont know if this is a bug:
In the file "axml.py", somewhere is "self.content = open(self.path, 'r').read()", but in this way, I cant read the entire file(.apk). So I change the code like this "self.content = open(self.path, 'rb').read()", and it works well.