1

We are creating a market to selling android apps on it. But we have a problem here. Our site is asp.net based & we have a VPS. now, my question is how can we get the manifest information like package name, package number, permissions etc when a user uploads its apk file to store them in DB? I want the system to automatically do this for me to do packagename comparisons and etc

1 Answers1

0

This is a very general question, but as a first step you should know that an apk is simply a zip file. Therefore, by expanding, you can access the manifest xml, and read the values you need. How you do this, depends on your dev team (this is an asp.net question now!).

In order to decompile the XML you can use this parser for dot net: http://androidxmldotnet.codeplex.com/

Community
  • 1
  • 1
minikomi
  • 8,363
  • 3
  • 44
  • 51