i was trying to inspect an .apk file for a project, so i decided to decompile it using APKtool using:
apktool d name.apk
I find what i wanted, changed it (i modified just a bunch of .json file and some .png, all in the /assets folder), but after re-building it with
apktool b name -o new.apk
I had some problems in installing the app on my device. Any suggestions?
It could be the signature of the .apk, according to other similar questions. But none of those explain the method to sign the .apk file in a correct way.