When I build my Android project in Intellij (12), it generates a xxxx.afp.apk file next to my normal .apk en unaligned.apk files.. Can someone explain me what this is?
module_name.unaligned.apk is final Android package got before it is processed by "zipalign" tool. module_name.afp.apk is used for internal purposes of the IDE (for building Android artifacts), is is not generated anymore in IDEA 12.1
module_name.unaligned.apk is final Android package got before it is processed by "zipalign" tool.
module_name.afp.apk is used for internal purposes of the IDE (for building Android artifacts), is is not generated anymore in IDEA 12.1
Thanks!