1.0.1 • Published 4 years ago

react-native-app-cache-clear v1.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

react-native-app-cache-clear

Getting started

$ npm install react-native-app-cache-clear --save

Mostly automatic installation

$ react-native link react-native-app-cache-clear

Usage(Android only)

import AppCacheClear from "react-native-app-cache-clear";

// get size and unit
AppCacheClear.getCacheSize((size, unit) => {
  console.log(size, unit);
});

// clear cache
AppCacheClear.clearCache(() => console.log("clear!"));