Run iOS Apps Without Installing Them? LiveContainer Makes It Possible
Ever been curious about an iOS app but didn't want to go through the whole download-and-install dance? Maybe you're testing a competitor's app, reviewing a design, or just want a quick peek without committing storage space. The usual process feels heavy. What if you could just... run it?
Enter LiveContainer. It's an open-source project that does exactly what it sounds like: it lets you launch and use iOS apps directly, without installing them onto your device's home screen. It's like having a temporary, sandboxed app player right on your iPhone or iPad.
What It Does
LiveContainer is a native iOS application that acts as a container environment. You load an .ipa file (the iOS application archive) into it, and LiveContainer boots the app inside its own sandbox. The app runs almost as if it were normally installed—you can interact with it, use its features, and when you close LiveContainer, the app's data is contained within that session. No permanent installation means no leftover app icons or data cluttering your device.
Why It's Cool
The clever part is in the implementation. LiveContainer leverages iOS's own mechanisms for running apps, but it intercepts the installation step. This gives developers and testers a powerful, disposable workspace.
Some immediate use cases come to mind:
- Quick Prototyping & Demos: Show a client or teammate a build without needing them to install TestFlight or a provisioning profile.
- Security Research & QA: Safely inspect or test an app's behavior in an isolated environment that you can wipe clean instantly.
- App Review: Easily check out other apps on the App Store for design or feature inspiration without polluting your device.
- Education: Explore how an app works without making any permanent changes to your daily driver iPhone.
It's a utility that turns a previously rigid process (install → use → uninstall) into something fluid and temporary.
How to Try It
Ready to give it a spin? The project is open source on GitHub.
- Head over to the LiveContainer repository.
- You'll need Xcode to build and run the project on your device. Clone the repo, open the
.xcodeproj, and set your development team for code signing. - Build and run the app on your iOS device (this requires an Apple Developer account, even a free one).
- Once LiveContainer is on your device, you can load
.ipafiles into it via the Files app or AirDrop.
The README has the latest details and requirements, so it's the best place to start.
Final Thoughts
LiveContainer feels like one of those tools that fills a gap you didn't fully realize existed. It's not for everyday users, but for developers, designers, and testers, it's a genuinely useful utility that makes the iOS workflow a bit more flexible. It embraces the idea of temporary, context-specific tooling—something we see all the time on the desktop but is rarer on mobile. If you regularly handle iOS app files, it's definitely worth a look.
@githubprojects
Repository: https://github.com/LiveContainer/LiveContainer