💬

End this chat?

This will clear the conversation and close the window.

Jiinubi ChatPal

Online & ready
Agent is typing…
Documentation

Find What You Need

Browse our documentation by category, search for a topic,
or explore popular articles below.

Back

04. Android Installation Guide

Android Installation Guide

On Android devices, Google Chrome provides a seamless "One-Tap" installation process. Because the Jiinubi Managed App Engine handles the service worker and manifest automatically, your users will be prompted to install the app as soon as they show interest in your site.


Standard Installation (The Chrome Prompt)

When a user visits your site on Android Chrome, the browser will automatically offer to install the app if they spend more than 30 seconds on the page or interact with your content.

  1. A small "Add to Home Screen" banner will appear at the bottom of the screen.
  2. The user taps the banner.
  3. They click Install in the confirmation popup.

Android Chrome Install Prompt

Notice:
If a user clicks the "X" to dismiss this prompt, Chrome will not show it again for several weeks to avoid being intrusive. This is where your custom button becomes essential.

The "Smart Install" Button (For Dismissed Prompts)

If your user dismissed the browser's automatic prompt, you can provide your own link or button inside your app to trigger the installation manually.

How to Integrate the Trigger

<button id="jiinubi-install-btn" style="display:none;">Install App</button>

<script>
let deferredPrompt;
window.addEventListener('beforeinstallprompt', (e) => {
e.preventDefault();
deferredPrompt = e;
document.getElementById('jiinubi-install-btn').style.display = 'block';
});

document.getElementById('jiinubi-install-btn').addEventListener('click', async () => {
if (deferredPrompt) {
deferredPrompt.prompt();
const { outcome } = await deferredPrompt.userChoice;
deferredPrompt = null;
document.getElementById('jiinubi-install-btn').style.display = 'none';
}
});
</script>
Tip:
Place this button in your navigation menu or user dashboard. It will only appear if the app isn't already installed.

Manual Installation via Chrome Menu

If the prompt doesn't appear, users can install it manually:

  1. Tap the Three Dots (⋮) in Chrome.
  2. Select "Install app" (or "Add to Home Screen").
  3. Confirm the installation.

Android Manual Install via Menu


Summary

Summary:
Android users get the best experience through Chrome. By using the Jiinubi App Engine, you ensure easy installation even if the first prompt is ignored.
Was this article helpful?
Thanks for your feedback!