Skip to content
Apps Made With AI

Features

Everything around your website that makes it an app

Your content stays where it is. Apps Made With AI adds the native shell, the device access, the store pipeline, and the publishing path App Review actually looks for.

The platform

From a URL to signed binaries on both stores

Native toggles are only half of it. Detection, signing, screenshots, credentials and domain proof are what actually get an app onto a store — and keep it yours.

Site inspection

We load your URL the way a phone would and report title, icons, theme colour, manifest, navigation, and anything that would make a poor app — including a missing viewport or a login wall on the first screen.

Native chrome

Real iOS tab bars and Android drawers, driven by your own URLs. No browser chrome, no address bar. Pull to refresh and a branded offline screen sit in the native shell, not in JavaScript.

Live preview and readiness

Every toggle shows what it does for users and what App Review expects. A live score names the step where each problem is fixed, so you do not find out in a rejection email.

Signed iOS and Android builds

A signed .ipa on macOS runners and a signed .aab on Linux, from the same configuration. Icons and splash screens at every density both platforms require.

Store screenshots, generated

Your live site is captured at every size Apple and Google demand, cookie banners dismissed first, then checked against the exact pixel requirements — because a wrong-sized screenshot is an instant upload rejection.

Your accounts, encrypted credentials

Apps are submitted from your Apple and Google accounts. API keys are encrypted per organisation, bound so a stolen record cannot be replayed, and never written to logs. You can revoke them any time.

Domain verification

Control of the website is proven before any build runs. That is what keeps this from becoming a phishing-app factory, and it is what App Review expects of the content owner.

Organisations and roles

Invite teammates as owners, admins or members. Agency workspaces keep each client’s credentials and apps separate. Configurations are versioned so a rejected build can be diffed against one that passed.

Native capabilities

Every toggle in the wizard, in plain language

You turn these on or off per app. Each one that needs an iOS permission also needs the sentence Apple shows the user — a build cannot start while one is missing.

Engagement

Reasons for someone to keep the app installed.

Push notifications

Send notifications to people who install the app, via APNs on iOS and Firebase on Android.

The single strongest argument that your app does something a website cannot. Reviewers look for it.

In-app review prompt

Ask engaged users for a store rating using the native review dialog.

Native feel

The difference between an app and a browser tab.

Offline mode

Cache the app shell natively and show a branded screen instead of a browser error when the connection drops.

Apple explicitly rejects apps that show a blank page or a browser error offline.

Pull to refresh

Native pull-to-refresh gesture at the top of every page.

Share sheet

Open the native share sheet from your site through the `NativeApp` bridge.

Haptics

Short vibrations on taps and confirmations, the way native apps feel.

Device capabilities

Hardware your website can reach through the native bridge.

Biometric app lock

Require Face ID, Touch ID or Android biometrics before the app content is shown.

A genuinely native capability that a browser tab cannot offer.

Camera

Let the site open the native camera to take photos or scan codes.

Photo library

Let people pick existing photos from their device.

Location

Share the device location with your site for maps, delivery or store finders.

File upload

Enable native file pickers for `<input type="file">` on both platforms.

Navigation & links

How the app behaves at the edges of your site.

Open external links in an in-app browser

Links outside your allowed origins open in a Safari View Controller / Chrome Custom Tab instead of the app WebView.

Prevents the app becoming a general-purpose browser — an explicit rejection reason on both stores.

Universal links / App Links

Links to your website open the app at the matching screen when it is installed.

Requires the association files to be served from your domain; we generate them for you.

Android back button handling

The hardware back button navigates web history and exits at the root, as Android users expect.

Google Play flags apps where the back button closes the app from any screen.

For your website

Call native features from one script tag

Add the snippet we give you and your site 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

If a capability was switched off at build time, the promise rejects with a typed error rather than throwing into your page.

index.html
<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 at every size the stores demand

Producing these by hand is the most tedious part of shipping: every device, every time you change something. Apps Made With AI renders your live site, then composites the result into presentable marketing frames.

1290×27961242×26882064×27521080×19201600×25601024×500
App icon, splash screen and store screenshots generated from a live website
9:41
A boutique shopping app on a phone, with native tabs instead of a browser bar
Shop
Search
Orders
You

What visitors see

Your site, with a home-screen icon and a native tab bar

Push notifications land on the lock screen. Offline opens a branded shell instead of a browser error. Deep links open the matching page. That surrounding layer is why this is an app, and why a plain wrapper is not.

See what is included on each plan

Ready when you are

See your website as an app

Analysis and preview are free. You will know whether the site is ready — and what to fix if it is not — before you spend anything.

We read your title, icon, colours and navigation, then show you exactly what your app will look like. No account changes, no code.