@maximilien0405/capacitor-android-launcher 7.0.0 → 7.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,11 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
This Capacitor plugin allows you to open the launcher settings to set your app as the default launcher on Android.
|
|
4
4
|
|
|
5
|
-
It can also, if needed, start (and stop) and immersive mode that hides all UI elements. This is usefull for an Kiosk App, or for special apps made for childrens or seniors.
|
|
5
|
+
It can also, if needed, start (and stop) and immersive mode that hides the all UI elements (status bar and navigation bar). This is usefull for an Kiosk App, or for special apps made for childrens or seniors.
|
|
6
6
|
|
|
7
7
|
## Support
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
ANDROID Only.
|
|
10
|
+
|
|
11
|
+
- v7.X.X supports Capacitor V7 (Android minSdkVersion 23+).
|
|
10
12
|
|
|
11
13
|
## Installation
|
|
12
14
|
|
|
@@ -18,7 +20,7 @@ npx cap sync
|
|
|
18
20
|
## Usage
|
|
19
21
|
|
|
20
22
|
|
|
21
|
-
####
|
|
23
|
+
#### Open Launcher Settings
|
|
22
24
|
|
|
23
25
|
This method opens the settings page where the user can set your app as the default launcher.
|
|
24
26
|
|
|
@@ -44,7 +46,7 @@ This method restores the system controls.
|
|
|
44
46
|
await AndroidLauncher.stopImmersiveMode();
|
|
45
47
|
```
|
|
46
48
|
|
|
47
|
-
#### Check if
|
|
49
|
+
#### Check if is the Launcher
|
|
48
50
|
|
|
49
51
|
This method checks if your app is currently set as the default launcher.
|
|
50
52
|
|
package/package.json
CHANGED