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
HomeDocsClear App Cache

Clear App Cache

Clear WebView cache and temporary device files on command.

4 min read
Last updated: June 15, 2026

You can trigger the native cache purging interface (which deletes temporary assets, cookies, and local database cache) using two primary integration options:

Method A: Zero-Code Hyperlink

Use a custom URL protocol in standard anchor tags. Nativine intercepts this trigger and launches the native purge confirmation dialog:

html
<a href="nativine://cache-purge" class="app-only">Clear App Cache</a>

Method B: SDK Javascript Function

Trigger the purge confirmation programmatically from settings forms or account dashboards:

javascript
if (window.Nativine) {
  window.Nativine.purgeCache();
}
Was this page helpful?
PreviousCSS App DetectionNextApp Sharing