Storage

Enable localStorage & sessionStorage

import { WebView } from 'react-native-webview';

<WebView
  source={{ uri: 'https://{clientId}.loveslisa.tech/s/{showId}' }}
  javaScriptEnabled={true}
  domStorageEnabled={true} 
/>

Enabling Cache

To increase LiSA Player performance, caching must be enabled.

<WebView
  cacheEnabled={true}
  cacheMode={'LOAD_DEFAULT'}
/>

Last updated