Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kolbasa/cordova-plugin-overlay
This plugin is intended for requesting the screen overlay permission on Android.
https://github.com/kolbasa/cordova-plugin-overlay
android capacitor cordova draw grant ionic overlay permission screen
Last synced: 13 days ago
JSON representation
This plugin is intended for requesting the screen overlay permission on Android.
- Host: GitHub
- URL: https://github.com/kolbasa/cordova-plugin-overlay
- Owner: kolbasa
- License: mit
- Created: 2021-11-18T19:28:02.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2022-02-05T14:46:15.000Z (almost 3 years ago)
- Last Synced: 2025-01-14T09:43:48.316Z (21 days ago)
- Topics: android, capacitor, cordova, draw, grant, ionic, overlay, permission, screen
- Language: Java
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Cordova Overlay Plugin
=========================This plugin is intended for requesting the screen overlay permission on Android.
# Installation
### Cordova
cordova plugin add cordova-plugin-overlay
### Ionic + Cordova
ionic cordova plugin add cordova-plugin-overlay
### Capacitor
npm install cordova-plugin-overlay
# API
### canOverlayScreen()
```js
Overlay.canOverlayScreen()
.then(function (result) {
// true, false
});
```### openOverlaySetting()
```js
Overlay.openOverlaySetting()
.then(function (result) {
// true, false
});
```