npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@capawesome/capacitor-managed-configurations

v8.0.2

Published

Capacitor plugin to access managed configuration settings on Android and iOS.

Readme

Capacitor Managed Configurations Plugin

Capacitor plugin to access managed configuration settings.

Use Cases

The Managed Configurations plugin is typically used in enterprise apps that are distributed through an EMM or MDM solution, for example:

  • Preconfigured server settings: Read a server URL or port that the organization's IT department has configured, instead of asking the user to enter it.
  • Policy-driven features: Use boolean configuration entries to enable or disable features per deployment, such as allowing downloads on cellular connections.
  • Multi-tenant deployments: Ship a single app to multiple organizations and adapt it at runtime based on the managed configuration values of each tenant.

Compatibility

| Plugin Version | Capacitor Version | Status | | -------------- | ----------------- | -------------- | | 8.x.x | >=8.x.x | Active support | | 7.x.x | 7.x.x | Deprecated | | 6.x.x | 6.x.x | Deprecated | | 5.x.x | 5.x.x | Deprecated |

Installation

You can use our AI-Assisted Setup to install the plugin. Add the Capawesome Skills to your AI tool using the following command:

npx skills add capawesome-team/skills --skill capacitor-plugins

Then use the following prompt:

 Use the `capacitor-plugins` skill from `capawesome-team/skills` to install the `@capawesome/capacitor-managed-configurations` plugin in my project.

If you prefer Manual Setup, install the plugin by running the following commands and follow the platform-specific instructions below:

npm install @capawesome/capacitor-managed-configurations
npx cap sync

Android

See Define managed configurations and follow the instructions to declare the app's managed configurations correctly.

Configuration

No configuration required for this plugin.

Demo

A working example can be found here: robingenz/capacitor-plugin-demo

Usage

The following example shows how to read managed configuration values as strings, numbers, and booleans.

Read managed configuration values

Fetch the value associated with a given key as a string, number, or boolean. The result contains null if no mapping exists for the given key. These methods are only available on Android and iOS:

import { ManagedConfigurations } from '@capawesome/capacitor-managed-configurations';

const getString = async () => {
  const result = await ManagedConfigurations.getString({ key: 'server_url' });
  return result.value;
};

const getNumber = async () => {
  const result = await ManagedConfigurations.getNumber({ key: 'server_port' });
  return result.value;
};

const getBoolean = async () => {
  const result = await ManagedConfigurations.getBoolean({
    key: 'download_on_cellular',
  });
  return result.value;
};

API

getString(...)

getString(options: GetOptions) => Promise<GetResult<string>>

Fetches the value associated with the given key, or null if no mapping exists for the given key.

Only available on Android and iOS.

| Param | Type | | ------------- | ------------------------------------------------- | | options | GetOptions |

Returns: Promise<GetResult<string>>


getNumber(...)

getNumber(options: GetOptions) => Promise<GetResult<number>>

Fetches the value associated with the given key, or null if no mapping exists for the given key.

Only available on Android and iOS.

| Param | Type | | ------------- | ------------------------------------------------- | | options | GetOptions |

Returns: Promise<GetResult<number>>


getBoolean(...)

getBoolean(options: GetOptions) => Promise<GetResult<boolean>>

Fetches the value associated with the given key, or null if no mapping exists for the given key.

Only available on Android and iOS.

| Param | Type | | ------------- | ------------------------------------------------- | | options | GetOptions |

Returns: Promise<GetResult<boolean>>


Interfaces

GetResult

| Prop | Type | Description | | ----------- | ---------------------- | --------------------------------------------------------------------------------------- | | value | T | null | The value of the configuration entry, or null if no mapping exists for the given key. |

GetOptions

| Prop | Type | Description | | --------- | ------------------- | --------------------------------------- | | key | string | Unique key for the configuration entry. |

Test your implementation

On Android, see Set up device owner for testing and follow the instructions to set up a device owner testing environment.

On iOS, you need to install the app as a managed app with a MDM solution.

FAQ

What are managed configurations?

Managed configurations are settings that an organization's EMM or MDM solution pushes to an app, for example a server URL or a feature toggle. This plugin lets your Capacitor app read these settings at runtime using the getString, getNumber, and getBoolean methods.

Should I use this plugin or the Intune plugin?

Organizations can deliver app configuration through two different channels, and administrators frequently mix them up. This plugin covers the MDM channel; the Intune plugin covers the MAM channel:

| | MDM channel (this plugin) | MAM channel (Intune) | | -------------------------- | --------------------------------------------------------- | ------------------------------------------------ | | Device enrollment required | Yes | No | | Delivered via | RestrictionsManager / com.apple.configuration.managed | Intune App SDK (Intune service) | | Targeted at | The device | The signed-in account (identity) | | EMM vendor | Any EMM/MDM vendor | Microsoft Intune only | | Typical scenario | Corporate-owned, fully managed devices | BYOD / app protection without device management |

If your organization deploys the app configuration policy with "Managed devices" as the delivery channel in the Intune admin center, use this plugin. If it is deployed with "Managed apps", use the Intune plugin. Apps that must support both scenarios should read both channels.

What happens if a configuration key does not exist?

The getString, getNumber, and getBoolean methods return a result whose value is null if no mapping exists for the given key. Your app should handle this case, for example by falling back to a default value.

Do I need to declare the managed configurations in my app?

On Android, yes. You need to declare your app's managed configurations as described in Define managed configurations so that EMM solutions can discover and set them. See the Installation section for details.

How can I test managed configurations during development?

On Android, you can set up a device owner testing environment as described in Set up device owner for testing. On iOS, the app must be installed as a managed app through an MDM solution. See the Test your implementation section for details.

Is the Web platform supported?

No, the getString, getNumber, and getBoolean methods are only available on Android and iOS. Managed configurations are a concept of mobile device management, which does not exist in the browser.

Can I use this plugin with Ionic, React, Vue or Angular?

Yes, the plugin is framework-agnostic. It works in any Capacitor app regardless of the web framework, including Ionic with Angular, React, or Vue, as well as plain JavaScript projects.

Related Plugins

  • App Integrity: Verify app and device integrity using the Play Integrity API and App Attest.
  • Intune: Protect corporate data with Microsoft Intune Mobile Application Management (the MAM channel counterpart to this plugin).
  • Root Detection: Detect rooted and jailbroken devices.
  • Secure Preferences: Securely store key/value pairs such as passwords, tokens or other sensitive information.

Newsletter

Stay up to date with the latest news and updates about the Capawesome, Capacitor, and Ionic ecosystem by subscribing to our Capawesome Newsletter.

Changelog

See CHANGELOG.md.

License

See LICENSE.

Credits

This plugin is based on the Capacitor Managed Configurations plugin. Thanks to everyone who contributed to the project!