android - Is there a way to test if an APK is correctly zipaligned -


our customer uploaded apk himself , has reported apk not aligned. surprised me lot , rather embarrassing.

before supplying new apk wonder if there way test if apk correctly aligned.

there of course zipalign -c — produces no output. no output mean success? or in return value? or there tool can better?

use

zipalign -c -v 4 'path-to-apk' 

-v flag gives verbose output.


Comments