Before putting your PWA on the Google Play Store, you’ll need to pass a checklist.
Baseline Progressive Web App Checklist
- Page load is fast enough on 3G
- Offline capabilities
- User can be prompted to Install the Web App
- Use a secure connection (HTTPS)
- Has a <meta name=”viewport”> tag with width or initial-scale
- Registers a service worker
- Contains some content when JavaScript is not available
- Configured for a custom splash screen
- Address bar matches brand colors
- Content is sized correctly for the viewport
- The short_name won’t be truncated on the home screen
- Cross browser support
- Page transitions don’t feel like they block on the network
- Each page has a URL
You can find a complete list on the developer google page:
Happy programming!