Encode/Decode AndroidManifest.xml inside APK
问题 I'm using ApkTool to decode AndroidManifest.xml inside an APK file and it works perfectly but how can I encode it again ,the same way it was encoded before, after applying some changes? For example (in my case) changing the app label. 回答1: You may use apktool again to create a new APK file including your changed AndroidManifest.xml . First, decompile the APK file: java -jar apktool.jar decode app.apk app Then modify the files you want in the app directory and recompile it back into a new APK: