After Publishing Your Native App say Android, the next thing that rings in your mind as a dev is how to get it out there to people for them to install. That matters.
With the reach and capabilities that progressive web apps have, you could rather build a progressive web app that automatically in a more engaging way prompts the user to install your native app.
app.webmanifest to add that Native App Install Banner on the web.
              app.webmanifestfile as in the code below. 
                  
        "prefer_related_applications": true,
        "related_applications": [
            {
            "platform": "play",
            "id": "your_native_app_id"
            }
            ]