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: about 2 months 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 (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-02-05T14:46:15.000Z (over 4 years ago)
- Last Synced: 2025-08-18T21:14:06.126Z (10 months 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
});
```