cordova-plugin-configuration-manager
Advanced tools
Comparing version 1.0.11 to 1.0.12
{ | ||
"name": "cordova-plugin-configuration-manager", | ||
"version": "1.0.11", | ||
"version": "1.0.12", | ||
"description": "A Cordova plugin for managing configurations", | ||
@@ -5,0 +5,0 @@ "author": "Diego Santiago", |
@@ -18,3 +18,6 @@ # cordova-plugin-configuration-manager | ||
param: action: string | {action: string; extras?: {key: string; value: any; flag: number; category: string}[]} | ||
param: | ||
```typescript | ||
action: string | {action: string; extras?: {key: string; value: any;}, flag?: number; category?: string[]} | ||
``` | ||
@@ -68,2 +71,3 @@ Here is an example of how to launch the Wi-Fi settings: | ||
action: 'android.intent.action.MAIN', | ||
flag: 268435456, // Intent.FLAG_ACTIVITY_NEW_TASK | ||
category: 'android.intent.category.HOME' | ||
@@ -79,7 +83,13 @@ }, | ||
``` | ||
In this example: | ||
The action parameter is set to 'android.intent.action.MAIN', which is a standard intent action used to start the main launcher activity of an application. | ||
In this case, it is used to trigger the home screen. | ||
The category parameter is set to 'android.intent.category.HOME', which specifies that the intent is for the home screen. | ||
## Contribution | ||
If you wish to contribute to this plugin, feel free to fork the repository, make your changes, and submit a pull request. We appreciate any kind of contribution, whether it's reporting issues, sending fixes, or adding new features. | ||
If you wish to contribute to this plugin, feel free to fork the repository, make your changes, and submit a pull request. | ||
We appreciate any kind of contribution, whether it's reporting issues, sending fixes, or adding new features. | ||
@@ -89,1 +99,2 @@ ## License | ||
This plugin is distributed under the MIT License. See the [LICENSE](./LICENSE) file for more information. | ||
{ | ||
"settings": [ | ||
{ | ||
"key": "android.settings.ACTION_DISPLAY_SETTINGS", | ||
"key": "android.settings.DISPLAY_SETTINGS", | ||
"description": "Display settings", | ||
@@ -10,3 +10,3 @@ "app": false, | ||
{ | ||
"key": "android.settings.ACTION_LOCALE_SETTINGS", | ||
"key": "android.settings.LOCALE_SETTINGS", | ||
"description": "Locale settings", | ||
@@ -17,3 +17,3 @@ "app": false, | ||
{ | ||
"key": "android.settings.ACTION_INTERNAL_STORAGE_SETTINGS", | ||
"key": "android.settings.INTERNAL_STORAGE_SETTINGS", | ||
"description": "Internal storage settings", | ||
@@ -24,3 +24,3 @@ "app": false, | ||
{ | ||
"key": "android.settings.ACTION_APPLICATION_SETTINGS", | ||
"key": "android.settings.APPLICATION_SETTINGS", | ||
"description": "Application settings", | ||
@@ -31,3 +31,3 @@ "app": false, | ||
{ | ||
"key": "android.settings.ACTION_SOUND_SETTINGS", | ||
"key": "android.settings.SOUND_SETTINGS", | ||
"description": "Sound settings", | ||
@@ -38,3 +38,3 @@ "app": false, | ||
{ | ||
"key": "android.settings.ACTION_WIFI_SETTINGS", | ||
"key": "android.settings.WIFI_SETTINGS", | ||
"description": "Wi-Fi settings", | ||
@@ -45,3 +45,3 @@ "app": false, | ||
{ | ||
"key": "android.settings.ACTION_WIFI_IP_SETTINGS", | ||
"key": "android.settings.WIFI_IP_SETTINGS", | ||
"description": "Wi-Fi IP settings", | ||
@@ -52,3 +52,3 @@ "app": false, | ||
{ | ||
"key": "android.settings.ACTION_BLUETOOTH_SETTINGS", | ||
"key": "android.settings.BLUETOOTH_SETTINGS", | ||
"description": "Bluetooth settings", | ||
@@ -59,3 +59,3 @@ "app": false, | ||
{ | ||
"key": "android.settings.ACTION_LOCATION_SOURCE_SETTINGS", | ||
"key": "android.settings.LOCATION_SOURCE_SETTINGS", | ||
"description": "Location source settings", | ||
@@ -66,3 +66,3 @@ "app": false, | ||
{ | ||
"key": "android.settings.ACTION_REQUEST_SCHEDULE_EXACT_ALARM", | ||
"key": "android.settings.REQUEST_SCHEDULE_EXACT_ALARM", | ||
"description": "Request schedule exact alarm", | ||
@@ -73,3 +73,3 @@ "app": false, | ||
{ | ||
"key": "android.settings.ACTION_USAGE_ACCESS_SETTINGS", | ||
"key": "android.settings.USAGE_ACCESS_SETTINGS", | ||
"description": "Usage access settings", | ||
@@ -80,3 +80,3 @@ "app": false, | ||
{ | ||
"key": "android.settings.ACTION_APP_SEARCH_SETTINGS", | ||
"key": "android.settings.APP_SEARCH_SETTINGS", | ||
"description": "App search settings", | ||
@@ -87,3 +87,3 @@ "app": false, | ||
{ | ||
"key": "android.settings.ACTION_BATTERY_SAVER_SETTINGS", | ||
"key": "android.settings.BATTERY_SAVER_SETTINGS", | ||
"description": "Battery saver settings", | ||
@@ -94,3 +94,3 @@ "app": false, | ||
{ | ||
"key": "android.settings.ACTION_DREAM_SETTINGS", | ||
"key": "android.settings.DREAM_SETTINGS", | ||
"description": "Dream settings", | ||
@@ -107,3 +107,3 @@ "app": false, | ||
{ | ||
"key": "android.settings.ACTION_AIRPLANE_MODE_SETTINGS", | ||
"key": "android.settings.AIRPLANE_MODE_SETTINGS", | ||
"description": "Airplane mode settings", | ||
@@ -114,3 +114,3 @@ "app": false, | ||
{ | ||
"key": "android.settings.ACTION_ACCESSIBILITY_SETTINGS", | ||
"key": "android.settings.ACCESSIBILITY_SETTINGS", | ||
"description": "Accessibility settings", | ||
@@ -121,3 +121,3 @@ "app": false, | ||
{ | ||
"key": "android.settings.ACTION_MANAGE_DEFAULT_APPS_SETTINGS", | ||
"key": "android.settings.MANAGE_DEFAULT_APPS_SETTINGS", | ||
"description": "Manage default apps", | ||
@@ -128,3 +128,3 @@ "app": false, | ||
{ | ||
"key": "android.settings.ACTION_MANAGE_ALL_APPLICATIONS_SETTINGS", | ||
"key": "android.settings.MANAGE_ALL_APPLICATIONS_SETTINGS", | ||
"description": "Manage all applications", | ||
@@ -135,3 +135,3 @@ "app": false, | ||
{ | ||
"key": "android.settings.ACTION_APPLICATION_DEVELOPMENT_SETTINGS", | ||
"key": "android.settings.APPLICATION_DEVELOPMENT_SETTINGS", | ||
"description": "Application development settings", | ||
@@ -142,3 +142,3 @@ "app": false, | ||
{ | ||
"key": "android.settings.ACTION_ZEN_MODE_PRIORITY_SETTINGS", | ||
"key": "android.settings.ZEN_MODE_PRIORITY_SETTINGS", | ||
"description": "Zen mode priority settings", | ||
@@ -149,3 +149,3 @@ "app": false, | ||
{ | ||
"key": "android.settings.ACTION_MANAGE_OVERLAY_PERMISSION", | ||
"key": "android.settings.MANAGE_OVERLAY_PERMISSION", | ||
"description": "Manage overlay permission", | ||
@@ -156,3 +156,3 @@ "app": false, | ||
{ | ||
"key": "android.settings.ACTION_REQUEST_MANAGE_MEDIA", | ||
"key": "android.settings.REQUEST_MANAGE_MEDIA", | ||
"description": "Request manage media", | ||
@@ -163,3 +163,3 @@ "app": false, | ||
{ | ||
"key": "android.settings.ACTION_APP_NOTIFICATION_SETTINGS", | ||
"key": "android.settings.APP_NOTIFICATION_SETTINGS", | ||
"description": "App notification settings", | ||
@@ -170,3 +170,3 @@ "app": true, | ||
{ | ||
"key": "android.settings.ACTION_APP_NOTIFICATION_BUBBLE_SETTINGS", | ||
"key": "android.settings.APP_NOTIFICATION_BUBBLE_SETTINGS", | ||
"description": "App notification bubble settings", | ||
@@ -177,3 +177,3 @@ "app": true, | ||
{ | ||
"key": "android.settings.ACTION_APPLICATION_DETAILS_SETTINGS", | ||
"key": "android.settings.APPLICATION_DETAILS_SETTINGS", | ||
"description": "Application details settings", | ||
@@ -184,3 +184,3 @@ "app": true, | ||
{ | ||
"key": "android.settings.ACTION_MANAGE_UNKNOWN_APP_SOURCES", | ||
"key": "android.settings.MANAGE_UNKNOWN_APP_SOURCES", | ||
"description": "Manage unknown app sources", | ||
@@ -191,3 +191,3 @@ "app": true, | ||
{ | ||
"key": "android.settings.ACTION_APP_OPEN_BY_DEFAULT_SETTINGS", | ||
"key": "android.settings.APP_OPEN_BY_DEFAULT_SETTINGS", | ||
"description": "App open by default settings", | ||
@@ -198,3 +198,3 @@ "app": true, | ||
{ | ||
"key": "android.settings.ACTION_MANAGE_APP_ALL_FILES_ACCESS_PERMISSION", | ||
"key": "android.settings.MANAGE_APP_ALL_FILES_ACCESS_PERMISSION", | ||
"description": "Manage app all files access permission", | ||
@@ -201,0 +201,0 @@ "app": true, |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
36649
97
581