LogoDOCS
Search documentation...⌘K

Getting Started

Welcome to NativineApp Requirements

Integration Guide

SDK Installation

Native Bridge API

CSS App DetectionClear App CacheApp SharingIn-App ReviewsHaptic Vibration

Core Features

Branding & IdentityApp Icons & SplashPush Notifications

Deployment

Google Play StoreApp Signing Keys
HomeDocsIn-App Reviews

In-App Reviews

Collect store ratings and user reviews directly.

4 min read
Last updated: June 15, 2026

Collecting user reviews is essential for app store visibility. Use Nativine's review triggers to prompt users for ratings:

Method A: Zero-Code Hyperlink

Trigger review logic via a link:

html
<a href="nativine://rate">Rate Our App</a>

Method B: SDK Javascript Function

Prompt review flow dynamically after positive user actions:

javascript
if (window.Nativine) {
  window.Nativine.requestReview();
}

Note: Free plan builds automatically fall back to opening the application's Play Store detail page, while Release plan builds launch the in-app Google Play review dialog flow natively.

Was this page helpful?
PreviousApp SharingNextHaptic Vibration