When Big Tech Buys Your Favorite App, Here's What Quietly Changes Inside the APK
One day your favorite app is indie, snappy, and weirdly good at the one thing it does. Then you wake up to a push notification congratulating you on being part of "an exciting new chapter" — and suddenly everything feels a little off. The UI shifted. A feature you used daily is just... gone. And somehow the app feels heavier, slower, like it's doing more than it used to.
You're not imagining it. When a company acquires an app, the APK itself often becomes a very different piece of software — sometimes within just a few update cycles. Here's what actually happens under the hood, and what you can do about it.
The First Sign: The APK Gets Heavier
Size isn't everything, but it's usually the first tell. After an acquisition, new SDKs get baked into the app — analytics platforms, ad networks, crash-reporting tools, and attribution trackers that the acquiring company already uses across its portfolio. These aren't always bad, but they add weight and they add data collection.
Take the acquisition of Wunderlist by Microsoft back in 2015. The app eventually got sunset entirely in favor of Microsoft To Do, but in the interim period, users who compared APK versions noticed ballooning package sizes and the quiet introduction of Microsoft's telemetry stack. The core functionality stayed intact for a while, but the data story changed significantly.
More recently, when Figma was (briefly, before regulators blocked it) in Adobe's crosshairs, developers were already bracing for similar SDK injections based on Adobe's existing app portfolio behavior. The pattern is consistent enough that you can almost set your watch by it.
Feature Removals Are Usually Strategic, Not Accidental
Here's something the press release will never say out loud: features get removed because they compete with something the acquiring company already sells. This isn't conspiracy thinking — it's just business.
When Facebook acquired Instagram in 2012, the photo app's original third-party API access got progressively locked down. Developers who'd built tools around it found themselves frozen out, and features that let users export or port their content became harder to find. The APK didn't look dramatically different, but the permissions manifest shifted and certain exported services quietly disappeared from version to version.
Any Place's acquisition of Foursquare split what was once a unified app into two separate products — Foursquare City Guide and Swarm — which wasn't technically an acquisition story, but it mirrors what acquirers do: they carve up functionality to fit a new business model rather than preserve what users originally loved.
If you're comparing APK versions and notice that certain <activity> entries or <service> declarations have been stripped from the manifest, that's usually where the feature death is happening.
The Privacy Permissions Creep Is Real
This one deserves its own section because it's the most consequential change for everyday users. New permissions don't always show up dramatically — sometimes they're tucked into an update that also fixes a minor bug, and most people just tap "Update" without reading the changelog.
After TikTok's parent ByteDance went through its various regulatory pressures, security researchers doing APK diffs found that certain versions had introduced clipboard access behavior that went well beyond what the app's stated functionality required. Whether that was a deliberate policy or a sloppy SDK import is almost beside the point — the permission was there, and users had no idea.
When Zoom acquired Keybase in 2020, privacy-focused users immediately started pulling apart both APKs. The Keybase app itself wasn't dramatically altered right away, but the concern was about what the acquisition enabled in terms of data sharing between platforms — something no permission dialog will ever spell out for you.
A good habit: before updating any app that just announced an acquisition, use a tool like APK Analyzer (built into Android Studio) or the free web-based APK Decompiler to compare the AndroidManifest.xml of your current version against the new one. Look specifically at uses-permission entries. New location, microphone, contacts, or storage permissions appearing post-acquisition are worth investigating before you accept them.
How to Back Up the Version You Actually Like
If an app still works great for you right now, before the acquiring company's influence fully kicks in, this is the moment to archive it. Android makes this reasonably straightforward.
Using ADB (Android Debug Bridge), you can pull an APK directly off your device with the command adb backup or by locating the APK path via adb shell pm path com.example.appname and then pulling it with adb pull. No root required for most apps.
Alternatively, apps like Swift Backup or Neo Backup (which does require root) let you snapshot app data alongside the APK itself — useful if your settings and local data matter as much as the app version.
Store these backups somewhere reliable: a local drive, not just cloud storage controlled by the very company that just bought your app.
Deciding Whether to Stick With New Versions or Sideload Old Ones
This is ultimately a judgment call, but here's a framework that works:
Stick with updated versions if: the core functionality you care about is still intact, the new permissions are reasonable given the app's purpose, and the acquiring company has a decent privacy track record.
Consider sideloading an older APK if: key features have been removed, new permissions seem unrelated to the app's function, or the acquiring company has a history of aggressive data monetization.
Sites like APKMirror maintain version histories for thousands of apps, and they cryptographically verify that APKs match the original developer signatures — meaning you're not getting a tampered file. That's a critical distinction from random APK repositories that don't do signature verification.
One important caveat: older APKs may have unpatched security vulnerabilities. If you're running a two-year-old version of an app that handles your banking or health data, the privacy win from avoiding new trackers might be outweighed by the security risk of running known-vulnerable code. Weigh that tradeoff honestly.
The Bigger Picture
App acquisitions are accelerating. Consolidation in the mobile software space means the indie apps you discover today have a decent statistical chance of ending up inside a larger company's portfolio within a few years. That's not inherently catastrophic — some acquisitions genuinely improve apps — but the default assumption that "update = better" needs a reality check.
Getting into the habit of checking APK changelogs, comparing permission manifests, and keeping backups of software you depend on isn't paranoia. It's just treating your phone like the personal computer it actually is. The rocks that make up a solid Android experience aren't just the apps themselves — it's knowing what's running inside them.