I have one android project where I need to create multiple apks. The only difference between each apk will be package name (e.g. com.my.package.name) and the app string name so I can install multiple instances of the app on one device. Is there a better way of doing this? I thought about creating a library project, but I thought there might be an easier way of doing this.
Share
I actually used the apktool to decompile the apk and then edited the smali files using some Perl script to change the package name.