In My android application i only need to make a small change in a property file.
For example:
In my property file ,there is a welcome message for specific client.
So,i have to change only client name in my application.
But the problem is ,I have to do that in source and then have to build every time for every client.
Is there any way to change it directly in .apk file without creating a build again & again.
To do this, you will have to decompress the packaged APK, and find the string you want to changed. The string may have been encoded or converted to bytecode (Java String) or a binary format (XML String). You will need to figure out whether or not this has been done, and what the new String looks like. You will then need to take the string you want to replace it with, and encode it the same way before swapping them.
After you’ve done all this, you must recompress the app and run the signing tool and zip align manually before it is usable in an apk format again.
Quite frankly, it’ll take you longer to do this than to just recompile the app.