Abhishek Batra
Abhishek Batra

Reputation: 1599

Modifying files in asset folder of an APK using java programming language

I have an .apk file. In the apk file I have a XML file in the assets folder. I want to write a standalone JAVA program (Not in android) to modify the xml file stored in assets folder of the .apk. Apk file is not release signed. Any idea how to do this ?

Upvotes: 1

Views: 446

Answers (1)

Mahmoud
Mahmoud

Reputation: 2893

You can extract the apk file and get the xml file then update it and use zipaligh tool in android sdk to make it .apk.

Upvotes: 1

Related Questions