All Projects → tomloprod → cordova-plugin-appminimize

tomloprod / cordova-plugin-appminimize

Licence: MIT license
This is a cordova plugin to minimizes the application in android devices

Programming Languages

java
68154 projects - #9 most used programming language
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to cordova-plugin-appminimize

Cordova Plugin Audioinput
This iOS/Android Cordova/PhoneGap plugin enables audio capture from the device microphone, by in near real-time forwarding audio to the web layer of your application. A typical usage scenario for this plugin would be to use the captured audio as source for a web audio node chain, where it then can be analyzed, manipulated and/or played.
Stars: ✭ 137 (+251.28%)
Mutual labels:  cordova-plugin
Cordova Plugin Fingerprint Aio
👆 📱 Cordova Plugin for fingerprint sensors (and FaceID) with Android and iOS support
Stars: ✭ 236 (+505.13%)
Mutual labels:  cordova-plugin
cordova-plugin-example
Example Cordova plugin for iOS and Android to support blog post.
Stars: ✭ 15 (-61.54%)
Mutual labels:  cordova-plugin
Cordova Plugin Speechrecognition
🎤 Cordova Plugin for Speech Recognition
Stars: ✭ 174 (+346.15%)
Mutual labels:  cordova-plugin
Cordova Plugin Touch Id
💅 👱‍♂️ Forget passwords, use a fingerprint scanner!
Stars: ✭ 209 (+435.9%)
Mutual labels:  cordova-plugin
cordova-plugin-android-window-background
Simple Cordova plugin to set Android window background on start-up 🎨 🍭
Stars: ✭ 15 (-61.54%)
Mutual labels:  cordova-plugin
Cordova Plugin Wkwebview File Xhr
Cordova Plugin for WebView File XHR
Stars: ✭ 116 (+197.44%)
Mutual labels:  cordova-plugin
cordova-line-login-plugin
A cordova plugin for easy implementation of LINE login using LineSDK.
Stars: ✭ 20 (-48.72%)
Mutual labels:  cordova-plugin
Cordova Plugin Local Notifications
Cordova Local-Notification Plugin
Stars: ✭ 2,525 (+6374.36%)
Mutual labels:  cordova-plugin
ZeroConf
ZeroConf plugin for Cordova/Phonegap 3.0
Stars: ✭ 39 (+0%)
Mutual labels:  cordova-plugin
Wikitude Cordova Plugin
Wikitude's Augmented Reality Plugin for Cordova - working together with the Wikitude SDK library for Android and iOS. Provides image recognition and tracking, geo-based augmente reality and 3D rendering and animations in an augmented reality scene
Stars: ✭ 197 (+405.13%)
Mutual labels:  cordova-plugin
Ionic Native Mocks
Ionic Native Mocks are designed to be used as placeholders during development for the actual Ionic Native modules.
Stars: ✭ 207 (+430.77%)
Mutual labels:  cordova-plugin
cordova-plugin-shell-exec
Apache Cordova Plugin to Execute Commands in Smartphone's Operating System Shell
Stars: ✭ 30 (-23.08%)
Mutual labels:  cordova-plugin
Cordova Plugin Photo Library
Maintainer needed. Please contact if you're using this library in your project
Stars: ✭ 140 (+258.97%)
Mutual labels:  cordova-plugin
cordova-plugin-purchases
Cordova in-app purchases and subscriptions made easy.
Stars: ✭ 52 (+33.33%)
Mutual labels:  cordova-plugin
Cordova Plugin Baidumaplocation
Get device current Location from Baidu Map
Stars: ✭ 137 (+251.28%)
Mutual labels:  cordova-plugin
cordova-fonts
Cordova plugin for enumerating fonts on a mobile device
Stars: ✭ 14 (-64.1%)
Mutual labels:  cordova-plugin
Create-a-custom-Cordova-plugin
How to create a custom cordova plugin and bridge it between your native code and a new or existing Cordova project
Stars: ✭ 32 (-17.95%)
Mutual labels:  cordova-plugin
cordova-study
📱 Cordova学习记录,Cordova插件的使用,热更新、media、device、集成x5内核等等。
Stars: ✭ 19 (-51.28%)
Mutual labels:  cordova-plugin
JiaCordova
在Cordova及插件的基础上封装一些常用的功能,不断更新中
Stars: ✭ 35 (-10.26%)
Mutual labels:  cordova-plugin

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();
});
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].