Now on Google Play — every new account starts with 100 free credits
Native features

Native features in a no-code app

What each capability does, what permission it needs, when the app should ask for it, and how to request it in a prompt — so your AI-built app uses the phone properly and declares only what it uses.

9 min readUpdated September 2026

In AI App Builder, native features are capabilities: each one bundles a permission, the library that implements it and a bridge the screens call. You add one by asking for it in a prompt; the builder declares it in the manifest, requests the permission at the right moment, and the exported Android project carries only the capabilities the app declares. This guide goes through each capability so you know what to ask for and what it means for your Play listing.

The capability model, briefly

A traditional app template ships every SDK it might ever need, and the manifest asks for everything. That produces scary permission lists and long data-safety forms. A capability-driven builder inverts it: the app's project.json lists what it needs; permissions, Gradle dependencies and adapter code are derived from that list. Ask for nothing native and the exported app asks for nothing native.

Camera and photos

Does: take a photo or pick from the gallery, return it to the screen (for a receipt, a profile picture, an enquiry). Permission: camera; gallery picking needs none on modern Android. Ask when: the user taps the photo button, not at launch. Prompt: "add a photo to each entry from the camera or gallery".

Location

Does: current position for "near me", distance, prayer times, check-in; optional tracking for run/walk apps. Permission: fine or coarse location; background location is a separate, heavily reviewed permission — avoid it unless the app is genuinely about tracking. Ask when: the user opens the map or taps "use my location". Prompt: "show distance to each store using my location".

Local notifications

Does: reminders and alerts scheduled on the phone — no server. Habit reminders, booking reminders, "order ready" timers, event session alerts. Permission: notifications (Android 13+ asks the user). Ask when: the user sets their first reminder. Prompt: "remind me 1 hour before each booking". Notifications in generated apps are heads-up (they appear on screen) with one channel the user can mute.

Push notifications

Does: messages sent from you to every phone, instantly, even when the app is closed. Needs: a push provider (Firebase Cloud Messaging) configured in the exported project — the builder generates the receiving side. Use when: a local "check for new posts" is not fast enough. Most community and event apps do fine with local notifications triggered by new rows in a sheet.

Biometric lock

Does: fingerprint or face to open the app or a screen (owner view, journal, expenses). Falls back to the device PIN. Permission: biometric. Prompt: "lock the Owner tab behind fingerprint".

Barcode and QR scanning

Does: reads barcodes and QR codes with the camera — stock counts, ticket check-in, product lookup, contact exchange. Permission: camera. Prompt: "scan a barcode to find the product". Uses the on-device scanner, no network.

Vibration and haptics

Does: a buzz on completion, on right/wrong answers, at timer transitions. Permission: vibrate (not shown to users). Prompt: "vibrate briefly when a habit is marked done".

Background audio

Does: keeps audio playing when the screen is off — sermons, podcasts, guided workouts. Prompt: "play recordings in the background with controls in the notification".

Sharing, calendar, dialer, WhatsApp

These need no permission: the app hands off to the system. "Share results", "add event to calendar", "call the shop", "send the order by WhatsApp" all work out of the box and are the cheapest way to make an app feel connected without a backend.

What the Play listing sees

Only the permissions your capabilities require. The data-safety form then has short, honest answers: a habit tracker with reminders collects nothing and shares nothing; a store app that sends orders by WhatsApp sends order details to you. The exported manifest is the source of truth — read it before you publish.

Try it in AI App BuilderFree to start · 100 credits · Android · export the source Get the app

Questions people ask

Will the app ask for all permissions at launch?

No. Generated apps ask when the feature is first used, which is what Google recommends and what keeps users from refusing.

Can I add a capability after the app is built?

Yes — ask for it and the builder updates the manifest and the relevant screen. The exported project changes accordingly.

What if the phone lacks a feature, like a fingerprint sensor?

The capability reports 'unavailable' and the screen falls back (PIN instead of biometrics, manual entry instead of scan). Nothing crashes.

Read next

Build your first app tonight

Describe it in a sentence, watch the screens appear, tap through them on your phone. Free to start — 100 credits, no card, no code.

Get AI App Builder — free Android 7.0+ · Google Play