Skip to content

lethanh9398/react-native-minimizer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

react-native-minimizer

Getting started

$ npm install @lethanh9398/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 '@lethanh9398/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();