Free developer tools for builds that won't behave

Eight free tools, no signup, for the moments a mobile build stops cooperating: an install that fails without saying why, a manifest you can't read, a fingerprint a console insists on, a tester who doesn't know what a UDID is.

They exist because BetaDrop's actual product is build distribution — upload an .ipa or .apk, get an install link and QR code — and every tool here answers a question that comes up on the way to a working install.

Read what's actually inside the build

Three inspectors, one per file format. Each parses the file in your browser — their pages say it plainly: nothing is uploaded, so a build under NDA never touches anyone's server.

IPA Inspector

Opens an .ipa and reads the bundle ID, version and build, minimum iOS version, device families, architectures and the embedded provisioning profile, plus a static security scan and a file explorer. Parsed in your browser; the build is never uploaded.

You have the build file but not a Mac, and you need to know what's inside — the bundle identifier for a config, or which devices the embedded profile actually covers before you ask anyone to rebuild.

Open the IPA inspector

APK Inspector

Decodes the binary AndroidManifest.xml: package name, versionCode and versionName, minSdk and targetSdk, permissions with the dangerous ones flagged, components, native ABIs, and a security scan for debuggable and cleartext flags, exported components and hardcoded secrets. Parsed locally; nothing is uploaded.

The build on the device doesn't behave like the one you think you shipped. Reading the manifest of the exact .apk in hand settles what it declares — without installing the Android SDK to get aapt.

Open the APK inspector

AAB Inspector

Opens an Android App Bundle, decodes its protobuf manifest, lists base, feature and asset-pack modules with their delivery modes, and estimates the real per-device download by costing one ABI, one density and one language instead of the whole file. Decoded in the browser, no upload.

Play takes bundles, but an .aab's file size tells you nothing about what a user downloads. This gives you the honest number, and reports whether the upload signature Play checks is present.

Open the AAB inspector

Work out why the install failed

Failed installs rarely say why. These three turn “it doesn't work” into a specific, fixable cause.

APK Signature Checker

Reads an APK's signing certificate: SHA-1, SHA-256 and MD5 fingerprints in the colon-separated hex that Firebase, Google Cloud Console and assetlinks.json expect, plus subject, issuer, validity and which signature schemes the file carries.

Android's “app not installed” on an update usually means the new build is signed with a different key than the one on the device — and the error never says so. Compare fingerprints from both builds and you have proof, not a hunch. It refuses keystore files on purpose: reading a fingerprint never requires a private key.

Check an APK signature

Provisioning Profile Decoder

Opens a .mobileprovision file in your browser — nothing uploaded — and shows the profile type, team, expiry, entitlements, certificates and the full list of registered device UDIDs, with search.

An ad-hoc build installs only on devices whose UDIDs are in the profile. When a tester's install fails, search the device list for their UDID: if it's missing, you've found the cause. Register it in the Apple portal and rebuild.

Decode a provisioning profile

UDID Checker

Gets an iPhone or iPad's UDID from the device itself via a configuration profile — no Mac, no cable, no app to install.

The follow-up to the decoder: the tester's device wasn't in the profile, and now you need their UDID to register it. Send them this link instead of talking them through Finder over chat.

Get a device UDID

Look it up, then get it on a phone

Bundle ID Finder & App Store Lookup

Finds any iOS app's bundle identifier and numeric App Store ID, with a verified list for the most-searched apps.

Firebase configs, MDM policies, deep links and review-prompt URLs all want an identifier the App Store page never displays. Look it up instead of unzipping an .ipa to read Info.plist.

Look up a bundle ID

QR Code Generator

Turns any URL into a QR code with PNG and SVG export. Generation happens entirely in your browser, so the link never leaves your machine.

The fastest way to move an install link from a screen to a phone is a camera. And an unreleased build's URL is exactly the kind of link you don't want logged by a random online generator — this one structurally can't.

Generate a QR code

What these tools won't do

They read; they don't repair. Nothing here re-signs a binary, edits a manifest, or converts an .aab into an installable .apk — BetaDrop distribution takes an .apk, not an .aab, and does not re-sign builds. When a signature or profile is wrong, the fix is a rebuild on a machine that holds your keys. If a site offers to re-sign an IPA for you, read why online IPA signing is a bad idea before uploading anything.

They don't bend Apple's rules either. Decoding a profile shows which devices a build covers; it can't add one. Ad-hoc installs still need the UDID registered and the build re-exported, and enterprise builds still need the trust step.

And if you have the SDKs installed, your terminal already does these jobs: aapt2 dump badging for the manifest, apksigner verify --print-certs for fingerprints, security cms -D -i profile.mobileprovision for profiles. The tools earn their keep on the machines that don't have those installed — a PM's laptop, a borrowed desk, a phone.

When the build checks out

The usual reason to inspect a build is that someone is waiting to install it. BetaDrop turns an .ipa or .apk into an install link and QR code that testers open in the phone's browser — no tester accounts, no cables, no review wait. Guest upload works without an account.

Frequently asked questions

Are BetaDrop's developer tools really free?

Yes. All eight tools are free, with no signup and no watermark. They exist because the paid product is build distribution — turning an .ipa or .apk into an install link and QR code — and each tool answers a question that comes up on the way to a working install. None of them requires a BetaDrop account.

Are my files uploaded when I use the inspectors?

Most of them never send it. The IPA, APK and AAB inspectors and the provisioning profile decoder parse the file in your browser with JavaScript, so the build never leaves your machine — each of those tool pages states this directly. The QR code generator is also entirely client-side, which matters when the URL you are encoding is an unreleased build's install link. The one exception is the APK signature checker: reading an X.509 signing certificate needs a parser that runs on our API, so that file is uploaded, read, and not retained.

Can these tools fix a build that won't install?

No — they are read-only and diagnostic. Nothing here re-signs a binary, edits a manifest or converts an .aab into an .apk. On iOS, the fix for a device missing from the provisioning profile is registering its UDID in the Apple Developer portal and rebuilding. On Android, a signature mismatch means uninstalling the existing app or rebuilding with the original key. Both fixes happen in your own toolchain, on a machine that holds your keys.

Which tool explains an Android 'app not installed' error?

The APK signature checker. Android refuses to update an installed app when the new build is signed with a different key, and the error message never says so. Read the SHA-256 fingerprint from the build that installs and from the one that does not; if they differ, you have found the cause. For the iOS equivalent — an ad-hoc build that will not install — the provisioning profile decoder shows whether the tester's device UDID is in the profile.

iMobile Designs
Developed by iMobile Designs
Made with
in India