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
HomeDocsApp Sharing

App Sharing

Open native device sharing sheets for URLs and text.

4 min read
Last updated: June 15, 2026

Nativine intercepts sharing actions to invoke native Android/iOS share menus, passing strings and links directly to other installed mobile apps:

Method A: Zero-Code Hyperlink

Create a hyperlink passing text and url parameters:

html
<a href="nativine://share?text=Checkout+this+site&url=https://mysite.com">Share App</a>

Method B: SDK Javascript Function

Call the share API wrapper programmatically:

javascript
if (window.Nativine) {
  window.Nativine.share("Checkout this site", "https://mysite.com");
}
Was this page helpful?
PreviousClear App CacheNextIn-App Reviews