Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

comparing two apk files to check the difference between then(size difference of 1 kb) [closed]

I have two apks, which basically are exactly the same but their size differs by 1 KB. I would like to check what this difference is. Is there any tool available for this purpose?

When i unzip the apk's , the size turns out to be exactly the same.

like image 663
sam Avatar asked Sep 01 '25 22:09

sam


2 Answers

this is what u looking for apkanalyzer

like image 168
zerocool Avatar answered Sep 03 '25 16:09

zerocool


An APK file is essentially an archive, therefore try run zipcmp command on the apks you interested in. It shows the sizes and hashes of the files that differ within an archive.

like image 31
A.Vynohradov Avatar answered Sep 03 '25 14:09

A.Vynohradov