TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: Why do Android apps take up so much disk?

3 pointsby f154hfdsalmost 4 years ago
My phone warned me today that it was running low on space. After looking through my Downloads and pictures for a bit I decided to clean up apps. I don&#x27;t really use many apps on my phone which is why this wasn&#x27;t my go-to in the first place.<p>The below numbers are just app storage (I imagine binary size on disk?):<p>Chrome (for reference, reasonable) - 187 MB<p>Capital One - 91 MB<p>Storage - 78 MB<p>Digital Secure (no idea what this is) - 69 MB<p>Email - 66 MB<p>Calendar - 28 MB<p>Contacts - 22 MB<p>Clock - 21 MB<p>Calculator (for reference, reasonable) - 1.7 MB<p>So I don&#x27;t work in the mobile space - can someone explain to me why these (mostly stock) apps take up so much space on disk? How come my stock Clock app is 1&#x2F;9th the size of Chrome?

2 comments

toast0almost 4 years ago
String localization files can&#x27;t be compressed unless you manage strings outside the normal Android string management; that can make a big difference.<p>Then you might have images for lots of different phone sizes, and maybe native libraries for different architectures.<p>And then there&#x27;s lots of library bloat. My barely does anything, doesn&#x27;t intentionally use any non built-in libraries, fairly small app takes 8 MB, I&#x27;d mark that as something close to the minimum size, although you calculator app is much smaller.
giantg2almost 4 years ago
I&#x27;d imagine some of it is functionality that you dont see behind the scenes, like syncing, or features you don&#x27;t use. I would also imagine that they contain ads, tracking, etc if they came from the carrier&#x27;s build (like Verizon). I have some some small apps, and they are easily under a couple MBs.