Cordova Plugin Appminimize Save

This is a cordova plugin to minimizes the application in android devices

Project README

cordova-plugin-appminimize License

AppMinimize is a cordova plugin to minimize the application in android devices

Supported Platforms

  • Android

Installation

Cordova:

cordova plugin add cordova-plugin-appminimize

Usage

This plugin exports an object with one method called "minimize":

window.plugins.appMinimize.minimize();

Ionic Example

In this example the application is minimized by pressing the back button

$ionicPlatform.registerBackButtonAction(function (event) {
    event.preventDefault();
    window.plugins.appMinimize.minimize();
}, 100);

Ionic Example

In this example the application is minimized by pressing the back button

ionic cordova plugin add cordova-plugin-appminimize
npm install --save @ionic-native/app-minimize
import { AppMinimize } from '@ionic-native/app-minimize';

...

constructor(private appMinimize: AppMinimize) { }

...

this.platform.registerBackButtonAction(() => {
    this.appMinimize.minimize();
});
Open Source Agenda is not affiliated with "Cordova Plugin Appminimize" Project. README Source: tomloprod/cordova-plugin-appminimize
Stars
38
Open Issues
1
Last Commit
5 years ago
License
MIT

Open Source Agenda Badge

Open Source Agenda Rating