3

According to the requirements, I need to encode AndroidManifest.xml while creating apk so that no one can extract or hack my project information. How can I achieve this?

I searched on Google but didn't find any solution for this. I also tried this but got no solution.

Any help will be appreciated. Thanks.

Lokesh
  • 3,247
  • 2
  • 33
  • 62

1 Answers1

3

so that no one can extract my project information.

I understand the need to make your code less likely to be hacked. But the AndroidManifest is not the place to do it. The AndroidManifest is the place where the application publicly declares what components it have, what permissions to access on the host OS and what hardware it uses from the host system.

Both the Android OS and Google Play Store need this information from the AndroidManifest so it can properly install it on the device and properly distribute the application.

So it's not possible!

Budius
  • 39,391
  • 16
  • 102
  • 144