I want to know, is there any way to get content of Apk file like permission, min-sdk version and the current version in PHP ?!
Asked
Active
Viewed 1,750 times
1 Answers
2
APKs are just ZIP files. If you unzip them and read AndroidManifest.xml, you should be able to get everything you need to know.
See also: How to parse the AndroidManifest.xml file inside an .apk package