Slide 30
Slide 30 text
Play Install API
Android Instant Apps API reference
Brinda la posibilidad de mostar el dialogo de instalacion del playstore de la app
completa.
Necesario:
implementation 'com.google.android.instantapps:instantapps:1.1.0'
Intent postInstall = new Intent();
InstantApps.showInstallPrompt(@NonNull Activity activity, @NonNull Intent
postInstallIntent, int requestCode, @Nullable String referrer);
Permite detectar si estoy en una instant app o no
if (!InstantApps.isInstantApp(this)) {
//mostrar install prompt button
}