Home
last modified time | relevance | path

Searched refs:createAndroidManifestPlugin (Results 1 – 19 of 19) sorted by relevance

/expo/packages/@expo/config-plugins/src/android/
H A DOrientation.ts4 import { createAndroidManifestPlugin } from '../plugins/android-plugins';
8 export const withOrientation = createAndroidManifestPlugin(
H A DAllowBackup.ts4 import { createAndroidManifestPlugin } from '../plugins/android-plugins';
6 export const withAllowBackup = createAndroidManifestPlugin(setAllowBackup, 'withAllowBackup');
H A DGoogleMapsApiKey.ts11 import { createAndroidManifestPlugin } from '../plugins/android-plugins';
16 export const withGoogleMapsApiKey = createAndroidManifestPlugin(
H A DIntentFilters.ts4 import { createAndroidManifestPlugin } from '../plugins/android-plugins';
10 export const withAndroidIntentFilters = createAndroidManifestPlugin(
H A DScheme.ts4 import { createAndroidManifestPlugin } from '../plugins/android-plugins';
16 export const withScheme = createAndroidManifestPlugin(setScheme, 'withScheme');
/expo/packages/@expo/config-plugins/build/plugins/
H A Dandroid-plugins.js6 exports.createAndroidManifestPlugin = createAndroidManifestPlugin;
21 function createAndroidManifestPlugin(action, name) { function
H A Dandroid-plugins.d.ts10 export declare function createAndroidManifestPlugin(action: MutateDataAction<Manifest.AndroidManife… function
H A Dandroid-plugins.js.map1createAndroidManifestPlugin","action","name","withUnknown","config","withAndroidManifest","modResu…
/expo/packages/@expo/config-plugins/build/android/
H A DOrientation.js.map1createAndroidManifestPlugin","setAndroidOrientation","getOrientation","config","orientation","andr…
H A DAllowBackup.js.map1createAndroidManifestPlugin","setAllowBackup","exports","getAllowBackup","config","_config$android…
H A DOrientation.js26 const withOrientation = (0, _androidPlugins().createAndroidManifestPlugin)(setAndroidOrientation, '…
H A DGoogleMapsApiKey.js.map1createAndroidManifestPlugin","setGoogleMapsApiKey","exports","getGoogleMapsApiKey","config","_conf…
H A DAllowBackup.js24 const withAllowBackup = (0, _androidPlugins().createAndroidManifestPlugin)(setAllowBackup, 'withAll…
H A DGoogleMapsApiKey.js25 const withGoogleMapsApiKey = (0, _androidPlugins().createAndroidManifestPlugin)(setGoogleMapsApiKey…
H A DIntentFilters.js25 const withAndroidIntentFilters = (0, _androidPlugins().createAndroidManifestPlugin)(setAndroidInten…
H A DIntentFilters.js.map1createAndroidManifestPlugin","setAndroidIntentFilters","exports","getIntentFilters","config","_con…
H A DScheme.js28 const withScheme = (0, _androidPlugins().createAndroidManifestPlugin)(setScheme, 'withScheme');
H A DScheme.js.map1createAndroidManifestPlugin","setScheme","exports","getScheme","config","Array","isArray","scheme"…
/expo/packages/@expo/config-plugins/src/plugins/
H A Dandroid-plugins.ts14 export function createAndroidManifestPlugin( function