# custom-native-settings

> Cordova Native Settings Plugin

Latest version **0.0.5** (published 2018-01-22) · ISC license · 0 weekly downloads

## Install

```sh
npm install custom-native-settings
pnpm add custom-native-settings
yarn add custom-native-settings
bun add custom-native-settings
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.5 |
| Published | 2018-01-22 |
| First published | 2018-01-20 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Venkat Prabhu |
| Maintainers | venkat007 |
| Keywords | cordova, settings, ecosystem:cordova, cordova-ios |

## Links

- npm: https://www.npmjs.com/package/custom-native-settings
- Repository: https://github.com/VBPrabhu/custom-native-settings
- Homepage: https://github.com/VBPrabhu/custom-native-settings#readme
- Issues: https://github.com/VBPrabhu/custom-native-settings/issues
- npm.io page: https://npm.io/package/custom-native-settings

## Alternatives

- [jsforce](https://npm.io/package/jsforce.md) — 851.2K weekly downloads
- [react-native-qrcode-svg](https://npm.io/package/react-native-qrcode-svg.md) — 693.5K weekly downloads
- [@salesforce/plugin-data](https://npm.io/package/@salesforce/plugin-data.md) — 394.9K weekly downloads
- [@backstage/plugin-search-common](https://npm.io/package/@backstage/plugin-search-common.md) — 308.5K weekly downloads
- [@chain-registry/types](https://npm.io/package/@chain-registry/types.md) — 38.4K weekly downloads

## Recent versions

- 0.0.5 (latest) — 2018-01-22
- 0.0.4 — 2018-01-20
- 0.0.3 — 2018-01-20

## README

# Cordova Settings Plugin
by [Venkat Prabhu]

## Description

* Allows you to access the iOS Settings panel for the currently running App
* This will not work on versions of iOS

## Installation

```
$ cordova plugin add custom-native-settings
$ cordova prepare
```

## Usage

```
settings.openSettings();
```
OpenNative plugin is used to Open Native settings screen from Cordova application for iOS 10.1

The plugin allows you to open Settings view from Android Cordova application and to open Native App settings view from iOS 8 Cordova application. 
Adding the Plugin to your project

    cordova plugin add https://github.com/VBPrabhu/custom-native-settings.git

Removing the Plugin to your project

cordova plugin rm custom-native-settings

Using the plugin (opens Location Settings  and Application Settings in iOS)

##Declaration :


    export var window: Window;

    interface Window {
    settings: any;
    }
declare var window: Window;

##Plugin call:


        this._platform.ready().then(() => {
            window.settings.openSettings("touchid");
        });


Select one of the options below for the param to open native setting

    "account",
    "application_details",
    "location",
    "wifi",
    "touchid",
     "about"
     "generali"  -- navigate default general settings page

##Reference:


https://stackoverflow.com/questions/45543983/how-to-open-location-services-from-ios-application-for-ios-11-beta

********************************************************************************************************

---
_Source: https://npm.io/package/custom-native-settings · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
