rn-minimizer
v1.0.0
Published
Minimize app for React Native on Android And iOS.
Downloads
1,432
Maintainers
Readme
react-native-minimizer
Getting started
$ npm install react-native-minimizer --save
Mostly automatic installation
Add this to your android/build.gradle
file, under allprojects.repositories
:
allprojects {
repositories {
// ...
maven {
url("${project(':react-native-minimizer').projectDir}/libs")
}
}
}
Usage
import Minimizer from 'react-native-minimizer';
// exits the aplication
Minimizer.exit();
// goes back to previously openned app if there was such
Minimizer.goBack();
// just minimizes the app
Minimizer.minimize();