react-native-fs-cache-manager
v1.1.1
Published
collects a bunch of directories, calc their total size, remove all of them
Downloads
21
Readme
react-native-library
Getting started
$ npm install react-native-library --save
Mostly automatic installation
$ react-native link react-native-library
Manual installation
iOS
- In XCode, in the project navigator, right click
Libraries
➜Add Files to [your project's name]
- Go to
node_modules
➜react-native-library
and addZKLibrary.xcodeproj
- In XCode, in the project navigator, select your project. Add
libZKLibrary.a
to your project'sBuild Phases
➜Link Binary With Libraries
- Run your project (
Cmd+R
)<
Android
- Open up
android/app/src/main/java/[...]/MainActivity.java
- Add
import com.fscache.ZKLibraryPackage;
to the imports at the top of the file - Add
new ZKLibraryPackage()
to the list returned by thegetPackages()
method
- Append the following lines to
android/settings.gradle
:include ':react-native-library' project(':react-native-library').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-library/android')
- Insert the following lines inside the dependencies block in
android/app/build.gradle
:compile project(':react-native-library')
Windows
- In Visual Studio add the
ZKLibrary.sln
innode_modules/react-native-library/windows/ZKLibrary.sln
folder to their solution, reference from their app. - Open up your
MainPage.cs
app
- Add
using Cl.Json.ZKLibrary;
to the usings at the top of the file - Add
new ZKLibraryPackage()
to theList<IReactPackage>
returned by thePackages
method
Usage
import ZKLibrary from 'react-native-library';
// TODO: What do with the module?
ZKLibrary;