1

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 ?!

iSun
  • 1,714
  • 6
  • 28
  • 57

1 Answers1

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

Community
  • 1
  • 1
Brad
  • 159,648
  • 54
  • 349
  • 530