Skip to main content
The 2024 Developer Survey results are live! See the results

All Questions

2 votes
1 answer
168 views

Unable to upload bundle with InstantApp and installable app

I have an app that has a base module :app in which AndroidManifest.xml does not have any activities. I have another module :main_app in which AndroidManifest.xml has a launcher activity. Then I have ...
Bhavin Desai's user avatar
1 vote
1 answer
452 views

Android Instant App in different project/branch

I have a normal installable app on my git main branch. Now I want to create an Instant version of that game on a branch. I have done everything as described here. And at version-codes it also says: ...
L3n95's user avatar
  • 1,585
0 votes
2 answers
1k views

Deep Link opens wrong app (instant app, not installed app)

I'm running into an issue with deep links when having an instant app and an installed app (version). My setup is as follows: Base App (com.android.application) Installed App (com.android.dynamic-...
Sebastian's user avatar
0 votes
1 answer
327 views

Problem with InstantApps.showInstallPrompt and postInstallIntent. Intent extras lose

postInstallIntent lose bundle extras after installation. I create postInstallIntent this way: val intent: Intent? intent = Intent(Intent.ACTION_VIEW, Uri.parse("https://www.test.ru/activity/main/&...
Svetlana Shishkina's user avatar
0 votes
1 answer
75 views

Is it obligatory to use Google Play Signing for Instant Apps now?

I've already asked this question, but now I think may be the reason in app signing. But there is opportunity to upload instant app as .zip of apks. So is anybody know if it is obligatory to use Google ...
Svetlana Shishkina's user avatar
0 votes
2 answers
140 views

Upload Instant App problem: The configuration APKs in your Instant App APKs should have targeting information

I am developing an instant app and have an issue with uploading to play console internal track. I successfully built bundle with ./gradlew bundleRelease command, than generated apks with bundletool ...
Svetlana Shishkina's user avatar
1 vote
1 answer
1k views

Modules 'base' and 'instantapp' contain entry 'assets/crashlytics-build.properties' with different content

I am generating Signed Build Bundle. Instant App Module is launching perfectly in device but when I am generating Signed Build Bundle I got this error. 'Modules 'base' and 'instantapp' contain entry ...
Dmarp's user avatar
  • 218
0 votes
0 answers
125 views

Instant App : Can we use dynamic bundle only for Instant app and not for main app?

I have two separate codebases one for the main app and one for Instant app. I am not using Android App Bundles in the main app. Can I use the Dynamic module only in the Instant App as the feature ...
Krishna Agarwal's user avatar
1 vote
0 answers
494 views

Android Instant app: Failed to notify the platform of the successful install

I have an instant-enabled app, which I have uploaded onto the Google Play Internal test track. When I share this link to my testers, and they click 'Try Now' for the first time, it starts "installing"...
Tmarsh2's user avatar
  • 417
0 votes
1 answer
160 views

Possible to have different intent filters for installed app and instant app?

I'm currently using the old feature plugin for creating an Instant App. In the base feature module's AndroidManifest file I have Activity B that listens for intents following the pattern "/pets/dogs/...
user1857437's user avatar
4 votes
1 answer
313 views

Instant Enabled App Bundle Not Downloading Full APK instead shows error

I'm trying to build the instant enabled app bundle by following this article. But when I click on install app button it shows the following message: You cannot install this app because another ...
Ashu Tyagi's user avatar
  • 1,420
0 votes
1 answer
381 views

Java syntax for calling installable app from instant with showInstallPrompt

I'm looking for the Java boilerplate for calling my installable app from my instant app. I found something coded in Kotlin on GitHub here https://github.com/googlesamples/android-instant-apps I'm ...
Androidcoder's user avatar
  • 4,579
5 votes
2 answers
1k views

Instant app with Dynamic Features always show Disambiguation dialog with 1 option

I'm experimenting with Dynamic Features and Instant Apps. To navigate between various features, I use Deep Links. Each time I navigate to another Activity, I see the disambiguation dialog for less ...
Entreco's user avatar
  • 12.9k
0 votes
1 answer
724 views

Can I test an instant app deploy from bundles locally?

It is possible to test the installable App Bundle with bundle tool. https://developer.android.com/studio/command-line/bundletool bundletool build-apks bundletool install-apks Recently Google added ...
Volkman's user avatar
  • 912