556
questions
0
votes
0
answers
30
views
Error launching Android Instant App from Play Store
We've currently created an instant app and are preparing it for release.
When running the instant app in Android Studio, it works normally.
However, when I run the instant app after distributing it to ...
0
votes
1
answer
31
views
Issues While Trying to Create an Internal Testing Release for my Instant App on Google Play Store
I have just created a google instant app with React Native expo. I have generated the aab file and created an internal testing release, which I believe is the same as publishing the app. However, when ...
0
votes
0
answers
33
views
Unable to use instant app if i remove implementation ('app') from dependency of dynamic module?
I want to use One feature of my app as Instant app which needs below dependecy which is increasing the app size to 60MB.
implementation ('org.pytorch:pytorch_android_lite:1.13.1')
implementation ('...
0
votes
0
answers
45
views
Android Instant App: download on-demands modules failed
I'm using Unity Engine to build an Instant Game. Because the app size is over 20MB, so I split the assets into on-demands modules for download when the game start.
I'm using Instant App, Android App ...
0
votes
1
answer
123
views
Instant Apps in Flutter
Hi I am trying to enable Instant Apps Feature in my already existing Flutter App but I am unable to find any comprehensive documentation to guide me through the procedure. Most of the articles I found ...
0
votes
0
answers
167
views
How to make instant app and app clip from React Native app?
I have a react native app built on top of ignite template. I use react navigation like this:
import React from "react"
import { ImageSourcePropType, useColorScheme } from "react-native&...
0
votes
0
answers
33
views
Android app is mistakenly taken as instant
I have two product flavors "rstd" for standard app and "rprv" (preview) for instant app.
For instant app the manifest has
<manifest ....
android:targetSandboxVersion="...
0
votes
1
answer
136
views
Text-To-Speech is not working in instant app in android Kotlin
I have an application that supports Text-To-Speech and it's worked fine in the installed app but when I tried to run instant then it's not working.
My question is whether the instant app is supported ...
0
votes
0
answers
46
views
Unable to insert new contact from instant app in Android 14
How to save/insert a new contact from instant app?
Tried inserting a new contact using intent by following developer docs like so:
val intent = Intent(ContactsContract.Intents.Insert.ACTION).apply {
...
0
votes
1
answer
49
views
How to customise downloading UI for on demand instant modules in android
Currently when requesting another instant module using url deep linking, like so:
val intent = Intent(Intent.ACTION_VIEW, uri)
intent.setPackage(applicationContext.packageName)
intent....
0
votes
0
answers
46
views
Installing from instant app fails with white screen
I use this code from my instant app.
I expected that I will get some functional prompt that will install the app.
But it shows some white dialog that is thin and tall but not functional
I have no idea ...
2
votes
0
answers
62
views
Android Instant App. App Icons are not showing on all devices on 'recents' screen
I've built an Android Instant app. The app builds to an .aab app bundle, and is hosted on the Play Store.
Some users on specific devices have reported the App Icon is not displaying on the 'recents' ...
0
votes
0
answers
54
views
Getting error while run the instant app in android
I have started exploring the instant app in Android. I have set up all the things like adding the dependency, Manifest things, and thinking deploy as an instant app in the run configuration.
Manifest :...
0
votes
0
answers
241
views
Google Play App Integrity API works for full app but not instant app
I'm trying to add instant app support to my existing app. My app has app integrity enabled and it passes when I run the full app locally. When I run the instant app locally however it fails. Are ...
1
vote
0
answers
79
views
How to set a different versionCode for a Google Instant App which uses the same single module as the installable version?
I am trying to create an instant Android app for a small app with just one module. I have added
<dist:module dist:instant="true" />
to the manifest and can now start the app as regular ...