Reputation: 1599
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
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