1.0.0 • Published 1 year ago

rn-minimizer v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

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();