# cordova-plugin-ete-appconnect-config

> This plugin allows your application to receive app-specific configuration from Core

Latest version **8.1.3** (published 2018-02-27) · ISC license · 0 weekly downloads

## Install

```sh
npm install cordova-plugin-ete-appconnect-config
pnpm add cordova-plugin-ete-appconnect-config
yarn add cordova-plugin-ete-appconnect-config
bun add cordova-plugin-ete-appconnect-config
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 8.1.3 |
| Published | 2018-02-27 |
| First published | 2018-02-20 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 15.3 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | MobileIron and Mohamed ali Tlili |
| Maintainers | mtlili |
| Keywords | ecosystem:cordova, cordova-android |

## Links

- npm: https://www.npmjs.com/package/cordova-plugin-ete-appconnect-config
- Repository: https://github.com/llittlefoxx/cordova-plugin-ete-appconnect-config
- Homepage: https://github.com/llittlefoxx/cordova-plugin-ete-appconnect-config#readme
- Issues: https://github.com/llittlefoxx/cordova-plugin-ete-appconnect-config/issues
- npm.io page: https://npm.io/package/cordova-plugin-ete-appconnect-config

## Alternatives

- [@sindresorhus/slugify](https://npm.io/package/@sindresorhus/slugify.md) — 3.7M weekly downloads
- [solid-js](https://npm.io/package/solid-js.md) — 2.7M weekly downloads
- [expo-glass-effect](https://npm.io/package/expo-glass-effect.md) — 2.5M weekly downloads
- [nanoassert](https://npm.io/package/nanoassert.md) — 780.8K weekly downloads
- [@ffmpeg/ffmpeg](https://npm.io/package/@ffmpeg/ffmpeg.md) — 529.5K weekly downloads

## Recent versions

- 8.1.3 (latest) — 2018-02-27
- 8.1.2 — 2018-02-20
- 8.1.1 — 2018-02-20

## README

# MobileIron AppConnect Plugin for Cordova/PhoneGap

## Description

This plugin allows you to receive app-specific configuration from MobileIron Core.

## Installation

Add the plugin to your project using the Cordova CLI:

```bash
cordova plugin add <plugin-directory>
```

Or using the PhoneGap CLI:

```bash
phonegap local plugin add <plugin-directory>
```

## Usage

### Set Config Handler
The method passed to `setConfigHandler` will be triggered when new or updated configurations are available.


    window.plugins.appconnect.requestConfig(
        function (result) {
            console.log(result);
            console.log("window.plugins.appconnect.requestConfig");
        },
        function () {
            console.log("failed set conf")
        });

    // Here is your next action
    window.plugins.appconnect.setConfigHandler(
        function (result) {
            console.log(result);

            console.log("window.plugins.appconnect.setConfigHandler");
        },
        function () {
            console.log("failed set conf")
        }
    );


## Supported Platforms

- Android (>= API Level 14 / Jelly Bean)

---
_Source: https://npm.io/package/cordova-plugin-ete-appconnect-config · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
