An open API service indexing awesome lists of open source software.

https://github.com/gostrafx/cordova-plugin-uninstallapk

Cordova plugin Uninstall APK Android
https://github.com/gostrafx/cordova-plugin-uninstallapk

apk cordova cordova-android cordova-android-plugin cordova-plugin uninstall uninstallapk

Last synced: about 1 month ago
JSON representation

Cordova plugin Uninstall APK Android

Awesome Lists containing this project

README

          

Cordova plugin Uninstall APK
======================

Platforms
---------

* Android

Installation
------------

Install with `cordova plugin` or `plugman`. The javascript module will be injected automatically.
```
cordova plugin add cordova-plugin-uninstallapk
plugman install --platform android --project platforms/android --plugin ..\cordova-plugin-uninstallapk
```
Example
-------

```js
UninstallApk.Uninstall('com.example.myapp').then(function (res) {
console.log(res);
}).catch(function(error){
console.log(error);
});

UninstallApk.AppIsInstalled('com.example.myapp').then(function (res) {
console.log(res);
}).catch(function(error){
console.log(error);
});

```

## Screenshots

| Uninstall | AppIsInstalled |
| ---------------------------------------- | ---------------------------------------------- |
| ![ScreenShot][Uninstall] | ![ScreenShot][AppIsInstalled] |

[Uninstall]: screenshots/Screenshot_1.jpg
[AppIsInstalled]: screenshots/Screenshot_2.jpg

License
-------

Apache 2.0