Features
A native shell around your website
Your content stays where it is. What Apps Made With AI adds is everything around it — the parts a browser tab cannot do, and the parts App Review looks for.
Push notifications
Reach people on the home screen instead of hoping they open a tab. Send from the dashboard or call it from your own site with one line of JavaScript.
Works offline
The app shell is cached natively. Lose signal and users get your branding and a retry button, not a browser error page — and it reconnects on its own.
Native navigation
Real iOS tab bars and Android navigation drawers, driven by your own URLs. No browser chrome, no address bar, no back-button guesswork.
Deep links
A link to your site opens your app at exactly that screen. Universal Links on iOS and verified App Links on Android, configured for you.
Camera and photos
Let people photograph a receipt or attach an image to a support request, using the real system picker rather than a file input.
Biometric lock
Face ID and fingerprint unlock in front of account pages and saved payment methods, without you writing any native code.
Pull to refresh
The gesture people already expect, wired to the native scroll view — not a JavaScript approximation that fights the page.
System share sheet
Share to Messages, WhatsApp or anywhere else through the real OS sheet, so sharing feels like every other app on the device.
For developers
Call native features from your own site
Add one script tag and your website gains a small JavaScript API. The same code runs on the web and inside the app — it simply does nothing in a browser.
- Request push permission and read the device token
- Open the system share sheet
- Take a photo or pick one from the library
- Unlock with Face ID or a fingerprint
- Trigger haptics and set the app badge count
- Detect whether you are running in the app at all
Every call fails safely. If a capability was switched off at build time, the promise rejects with a typed error rather than throwing into your page.
<script src="https://cdn.appsmadewithai.com/native.js"></script>
<script>
// Safe to call anywhere: it no-ops in a normal browser.
if (NativeApp.isNativeApp) {
await NativeApp.push.requestPermission();
const token = await NativeApp.push.getToken();
await saveTokenForUser(token);
}
shareButton.onclick = () =>
NativeApp.share({ title: document.title, url: location.href });
</script>Store assets
Screenshots, generated
Producing store screenshots by hand is the most tedious part of shipping an app: every size, every device, every time you change something.
Apps Made With AI renders your live site at each size Apple and Google demand — 6.9″ and 6.5″ iPhone, 13″ iPad, Android phone and tablet, plus the Play feature graphic — dismisses cookie banners before it captures, and composites the result into presentable marketing frames.
Every output is checked against the store’s exact pixel requirements before you see it, because a wrong-sized screenshot is an instant upload rejection.
See what your website looks like as an app
The analysis and preview are free. You will know whether your site is ready — and what to fix if it is not — before you spend anything.