Instant App: The Essence of Google Play Instant and Apps Without Installation

Author: IT Sectr Published: 2026-02-14 Reading time: 10 min

Android Instant App (Google Play Instant) is a technology that allows running native Android applications without installation. When a user clicks the "Try Now" button in Google Play or follows a deep link, the instant app downloads only the necessary module and launches instantly. This removes the installation barrier and shortens the path from discovery to first interaction.

Key Takeaways

  • No installation — instant apps run natively after downloading a single module (limit 4–10 MB)
  • Google Play Instant — platform infrastructure that delivers modules via deep links or the "Try Now" button
  • Modular architecture — Android App Bundle and dynamic feature-modules for on-demand delivery
  • Single codebase — one code base works for both instant and installed versions
  • Conversion growth — instant experience increases installation conversion by 20–30%

What is an Instant App?

Android Instant App is a native Android application that launches immediately after clicking a link or the "Try Now" button, without installation. Introduced by Google in 2017, the technology downloads only the module needed for the current scenario (placing an order, a game level, hotel booking) and runs it as a full native process with access to all device capabilities.

The concept solves a fundamental problem of the mobile market: the discovery barrier. Research shows that 60–80% of users who view an app page never install it, and 25% of installed apps are never opened. Instant apps eliminate this barrier by providing a native experience immediately. At the same time, a single codebase serves both the instant and the full version, reducing development costs.

By 2026, Google Play Instant supports games, e-commerce, travel booking, ticket purchasing, and utilities. Major adopters include Skyscanner (+25% bookings), NYTimes Crossword (+15% subscriptions), and Red Bull (+30% engagement). The technology is especially effective in "try before you buy" scenarios where users want to evaluate an app before installing it.

Google Play Instant Architecture

Google Play Instant is built on the Android App Bundle format and the Dynamic Delivery mechanism. When a user initiates an instant experience, Google Play downloads the base module and the specific feature-module, verifies the digital signature, and launches the activity within seconds. The entire process happens without an installation dialog — the app simply appears on the screen.

kotlin
// build.gradle.kts — instant module configuration
plugins {
    id("com.android.application")
    id("org.jetbrains.kotlin.android")
    id("com.google.android.instantapps")
}

android {
    namespace = "com.example.instantapp"
    compileSdk = 35

    defaultConfig {
        applicationId = "com.example.instantapp"
        minSdk = 26
        targetSdk = 35
        versionCode = 1
        versionName = "1.0"
    }

    dynamicFeatures = setOf(
        ":feature_checkout",
        ":feature_catalog"
    )
}

// AndroidManifest.xml for instant-app — "dist:module dist:instant="true"" flag
// <dist:module dist:instant="true" />
kotlin
// Feature module — order placement screen for instant
class CheckoutActivity : AppCompatActivity() {

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_checkout)

        // Instant app: feature-module size must not exceed 4 MB
        // Load thumbnails first, then load full images
        // Use minimum dependencies in feature-module
    }

    fun upgradeToInstalledApp() {
        // Prompt the user to install the full version
        InstantApps.showInstallPrompt(this, "com.example.instantapp", 123)
    }
}

A key configuration requirement is the instant manifest flag: each feature-module participating in the instant experience must include <dist:module dist:instant="true" /> in its manifest. The base module also requires the Play Instant SDK dependency. Google Play Console requires a separate configuration for instant releases, and the app itself must be published in the Android App Bundle (.aab) format.

Modular Development with Feature Modules

Feature modules are the building blocks of instant apps. Each feature-module represents a separate user scenario — placing an order, search, product card, game level — and can be loaded independently. The base module contains shared code, resources, and navigation infrastructure, while feature-modules implement specific functionality. This architecture benefits both the instant and the installed version.

kotlin
// settings.gradle.kts — project structure with feature-modules
pluginManagement {
    repositories {
        google()
        mavenCentral()
        gradlePluginPortal()
    }
}

rootProject.name = "InstantAppExample"

include(":app")                    // Base module
include(":feature_checkout")     // Order placement (instant-ready)
include(":feature_catalog")      // Product catalog (instant-ready)
include(":feature_profile")      // User profile (installed version only)

// build.gradle.kts (feature module) — instant-enabled
plugins {
    id("com.android.dynamic-feature")
    id("org.jetbrains.kotlin.android")
}

android {
    namespace = "com.example.feature.checkout"
}

dependencies {
    implementation(project(":app"))
    implementation("androidx.appcompat:appcompat:1.7.0")
}

Feature-modules interact with the base module through the Navigation Component and shared interfaces. The navigation component supports deep links directly into feature-modules, allowing instant apps to handle URLs. For data exchange, feature-modules can use shared ViewModels, service locators (Dagger/Hilt), or event buses. The base module declares the navigation graph, and each feature-module registers its destinations.

Size Limits and Optimization

Instant app size limits are the most critical technical constraint. The total download size (base module + required feature-modules) must not exceed 10 MB. For the first launch, one feature-module together with the base module should not exceed 4 MB to ensure startup in under 2 seconds. Exceeding the limits leads to download failures and user loss.

Optimization MethodSavingsImplementation
Resource compression20–40%shrinkResources = true + resConfigs for language filtering
Code compression (R8)30–50%minifyEnabled = true with ProGuard rules for release
Async loadingVariableLoad images after launch, not inside the module
WebP images25–35%Convert PNG/JPEG to WebP (quality 85–90%)
Module decompositionPer moduleGranular feature-modules — user downloads only what's needed
Android App BundleVariableAAB delivers only resources for the specific device

Size analysis tools: APK Analyzer in Android Studio (for .apk) and bundletool (for .aab). Google Play Console provides an "Instant App Size Report" with download sizes for each device configuration. In CI, you should add a size budget check — the build should fail if the initial bundle exceeds 8 MB.

Instant app deep links are HTTP/HTTPS URLs that launch the instant app directly. When a user clicks a link on a website, in an ad, or on social media, Android checks whether the instant app handles the given URL pattern. If so, the instant app module is downloaded and launched, and the user sees native content instead of a mobile web page.

kotlin
// AndroidManifest.xml — deep link handling in feature-module
<activity
    android:name=".CatalogActivity"
    android:excludeFromRecents="true">

    <intent-filter
        android:autoVerify="true">
        <action
            android:name="android.intent.action.VIEW" />
        <category
            android:name="android.intent.category.DEFAULT" />
        <category
            android:name="android.intent.category.BROWSABLE" />

        <data
            android:scheme="https"
            android:host="www.example.com"
            android:pathPrefix="/catalog" />
    </intent-filter>

    <!-- Required for instant apps -->
    <meta-data
        android:name="default-url"
        android:value="https://www.example.com/catalog" />
</activity>

Deep link verification is done through Digital Asset Links — a JSON file published at https://yoursite/.well-known/assetlinks.json. It confirms that the website owner controls the Android app. Without verification, links will open in the browser instead of the instant app. Google Search Console helps test and verify deep link configuration for instant app indexing.

When to Use Instant Apps

Instant apps are most effective in scenarios where the user wants immediate value without commitment: shopping (browse the catalog instantly), travel (search for flights without installing), games (try a level), tickets (buy in 3 taps), food delivery (browse the menu and order), and utilities (calculator, translator, barcode scanner). The common pattern is a focused, targeted experience that converts to installation for full functionality.

Not suitable for: apps with background services (messengers, fitness trackers), apps with complex onboarding (banking, medical records), or cases where an instant version cannot provide meaningful value (video editors, office suites). Google data shows that games, e-commerce, and travel have the highest instant-to-install conversion rates — often exceeding 30%.

Frequently Asked Questions

What is the size limit for Android Instant Apps?

Instant app limit — 10 MB total download (base + feature-modules). Google recommends keeping the first feature-module within 4 MB for launch in under 2 seconds. Limits are checked at publication — Google Play Console rejects builds exceeding the threshold.

Can instant apps access device hardware?

Yes. Instant apps have full access to the Android API, including camera, GPS, Bluetooth, NFC, and sensors — just like installed apps. The only limitation is that some sensitive permissions (SMS, phone calls, contacts) are unavailable until the full version is installed.

How are instant apps different from PWAs?

Instant apps are native Android applications (Kotlin/Java) running without installation. PWAs are web applications with Service Workers. Instant apps have full access to native APIs and better performance, but only work on Android. PWAs work on all platforms (iOS, Android, desktop) but have limited hardware access, especially on iOS.

Do I need a separate codebase for instant and installed versions?

No. One codebase serves both versions. Feature-modules are marked as instant-ready in the manifest, and the base module contains shared code. Google Play delivers only what's needed. To check the environment you can use InstantApps.isInstantApp() and change behavior as needed.

How to publish an instant app on Google Play?

Publication requires: Android App Bundle (.aab) with instant-ready feature-modules, a Google Play Console account with instant app access, and a signed instant build. The "Instant Apps" section in Play Console manages releases, deep link verification, and size checks. The review process for instant apps is separate from the main app listing.

Which devices support Google Play Instant?

Google Play Instant is supported on all devices with Android 5.0 (API 21) and above that have Google Play Store installed. As of 2026, this covers over 95% of active Android devices. Manufacturers may impose limitations on budget devices, but in practice support is widespread.

Can instant apps be monetized?

Yes. Instant apps support Google Play Billing for in-app purchases. Advertising via AdMob also works. However, subscription models are less effective since the user is not committed — it's recommended to monetize through one-time purchases or ads with a transition to installation for subscriptions.

What to Remember

  • Android Instant App — running native Android code without installation
  • Google Play Instant delivers only the necessary modules on demand
  • Feature-modules — building blocks for individual user scenarios
  • Size limit — up to 10 MB (recommended 4 MB for the first module)
  • Deep links with Digital Asset Links connect URLs to instant activity
  • Single codebase for instant and installed versions
  • Best for shopping, travel, games, and tickets — with high conversion potential

We will develop a mobile application turnkey

IT Sectr creates iOS and Android applications for startups and businesses since 2017. We will advise you and propose the best solution.

Discuss the project

Read also