UNPKG

react-native-mmkv-storage

Version:

This library aims to provide a fast & reliable solution for you data storage needs in react-native apps. It uses [MMKV](https://github.com/Tencent/MMKV) by Tencent under the hood on Android and iOS both that is used by their WeChat app(more than 1 Billion

14 lines (11 loc) 463 B
const { infon } = require("./log"); const RootGradleLinker = require("./rootGradleLinker"); const AppGradleLinker = require("./appGradleLinker"); const GradlePropertiesLinker = require("./gradlePropertiesLinker"); module.exports = () => { infon("\nRunning Android postlink script.\n"); new RootGradleLinker().link((buildToolsVersion) => { new AppGradleLinker(buildToolsVersion).link(); new GradlePropertiesLinker(buildToolsVersion).link(); }); };