0

Is there a way I can get application name, application version and application icon, for the package that is not yet installed by delphi?

Shaahin Ashayeri
  • 918
  • 2
  • 13
  • 30

1 Answers1

1

*.apk files are basically zip files, so you can have a look at the single resources at least to get the app icon. The ApplicationManifest.xml is howewer compiled into some binary format, so this might be a bit harder to decode (but there are answers that show code for that task as well here: How to parse the AndroidManifest.xml file inside an .apk package).

Community
  • 1
  • 1
Thomas Keller
  • 5,933
  • 6
  • 48
  • 80