This documentation is available as Markdown for AI agents and LLMs. See the full Markdown index or append .md to any documentation URL.
Tutorial: Create a module with a config plugin
Edit page
A tutorial on creating a native module with a config plugin using Expo Modules API.
Config plugins let you customize native Android and iOS projects generated with npx expo prebuild in Continuous Native Generation (CNG) projects. You can use them to add properties to native config files, copy assets to native projects, or apply advanced configurations, such as adding an app extension target.
As an app developer, config plugins help you apply customizations not exposed in the default app config. As a library author, they enable you to configure native projects automatically for developers using your library.
This tutorial explains how to create a new config plugin from scratch and read custom values that your plugin injects into AndroidManifest.xml and Info.plist from an Expo module.
1
Initialize a module
Start by initializing a new Expo module project with create-expo-module. This sets up scaffolding for Android, iOS, and TypeScript and includes an example project to test the module within an app. Run the following command to get started:
This guide uses the name expo-native-configuration/ExpoNativeConfiguration for the module project. However, you can choose any name you prefer.
2
Set up workspace
In this example, you don't need the view module included by create-expo-module. Clean up the default module with the following command:
Locate the following files and replace them with the provided minimal boilerplate:
- android/src/main/java/expo/modules/nativeconfiguration/ExpoNativeConfigurationModule.kt
- ios/ExpoNativeConfigurationModule.swift
- src/ExpoNativeConfigurationModule.ts
- src/index.ts
- example/App.tsx
- package.json
3
4
Create a new config plugin
Plugins are synchronous functions that accept an ExpoConfig and return a modified ExpoConfig. By convention, these functions are prefixed with the word with. Name your plugin withMyApiKey or use a different name, as long as it follows this convention.
Here is an example of a basic config plugin function:
const withMyApiKey = config => { return config; };
You can also use mods, which are async functions that modify files in native projects, such as source code or configuration files (plist, xml). The mods object is different from the rest of the app config because it doesn't serialize after the initial reading. This allows you to perform actions during code generation.
When writing config plugins, follow these considerations:
- Plugins must be synchronous, and their return value must be serializable, except for any
modsthat are added. pluginsare invoked whenever thegetConfigmethod fromexpo/configreads the configuration. In contrast,modsare invoked only during the "syncing" phase ofnpx expo prebuild.
Although optional, use
expo-module-scriptsto simplify plugin development. It provides a recommended default configuration for TypeScript and Jest. For more information, see the config plugins guide.
Start creating your plugin with this minimal boilerplate. Create a plugin directory for writing the plugin in TypeScript and add an app.plugin.js file in the project root, which will be the plugin's entry point.
Create a plugin/tsconfig.json file
Create a plugin/src/index.ts file for your plugin
Create an app.plugin.js file in the root directory
At the root of your project, run npm run build plugin to start the TypeScript compiler in watch mode. Next, configure your example project to use your plugin by adding the following line to the example/app.json file:
When you run the npx expo prebuild command inside your example directory, the terminal logs "my custom plugin" through a console statement.
To inject your custom API keys into AndroidManifest.xml and Info.plist, use helper mods provided by expo/config-plugins. These make it easy to modify native files. For this example, use withAndroidManifest and withInfoPlist.
As the name suggests, withAndroidManifest allows you to read and modify the AndroidManifest.xml file. Use AndroidConfig helpers to add a metadata item to the main application, as shown below:
const withMyApiKey: ConfigPlugin<{ apiKey: string }> = (config, { apiKey }) => { config = withAndroidManifest(config, config => { const mainApplication = AndroidConfig.Manifest.getMainApplicationOrThrow(config.modResults); AndroidConfig.Manifest.addMetaDataItemToMainApplication( mainApplication, 'MY_CUSTOM_API_KEY', apiKey ); return config; }); return config; };
Similarly, you can use withInfoPlist to modify the Info.plist values. Using the modResults property, you can add custom values as shown in the code snippet below:
const withMyApiKey: ConfigPlugin<{ apiKey: string }> = (config, { apiKey }) => { config = withInfoPlist(config, config => { config.modResults['MY_CUSTOM_API_KEY'] = apiKey; return config; }); return config; };
You can create a custom plugin by merging everything into a single function:
With the plugin ready to use, update the example app to pass your API key to the plugin as a configuration option. Modify the plugins field in example/app.json as shown below:
After making this change, test that the plugin works correctly by running npx expo prebuild --clean inside the example directory. This command executes your plugin and updates native files, injecting "MY_CUSTOM_API_KEY" into AndroidManifest.xml and Info.plist. You can verify this by checking the contents of example/android/app/src/main/AndroidManifest.xml and example/ios/exponativeconfigurationexample/Info.plist.
5
Read native values from the module
Now, make your native module read the fields added to AndroidManifest.xml and Info.plist by using platform-specific methods to access their contents.
On Android, access metadata information from the AndroidManifest.xml file using the packageManager class. To read the "MY_CUSTOM_API_KEY" value, update the android/src/main/java/expo/modules/nativeconfiguration/ExpoNativeConfigurationModule.kt file:
On iOS, you can read the content of an Info.plist property using the Bundle.main.object(forInfoDictionaryKey: "") method. To access the "MY_CUSTOM_API_KEY" value added earlier, update the ios/ExpoNativeConfigurationModule.swift file as shown:
6
Next steps
Congratulations, you have created a config plugin that interacts with an Expo module for Android and iOS!
If you want to challenge yourself and make the plugin more versatile, this exercise is open for you. Modify the plugin to allow any arbitrary set of config keys and values to be passed in, and add functionality to read arbitrary keys from the module.
A reference to create native modules using Kotlin and Swift.
Learn how to add support for macOS and tvOS platforms.