Home
last modified time | relevance | path

Searched refs:properties (Results 1 – 25 of 608) sorted by relevance

12345678910>>...25

/expo/docs/pages/versions/unversioned/sdk/
H A Dbuild-properties.mdx3 description: A config plugin that allows customizing native build properties during prebuild.
4 sourceCodeUrl: 'https://github.com/expo/expo/tree/main/packages/expo-build-properties'
5 packageName: 'expo-build-properties'
13 `expo-build-properties` is a [config plugin](/config-plugins/introduction/) configuring the native …
14 of your **android/gradle.properties** and **ios/Podfile.properties.json** directories during [Prebu…
34 "expo-build-properties",
60 'expo-build-properties',
77 ### All configurable properties
79 …nConfigType`](#pluginconfigtype) interface represents currently available configuration properties.
83 <APISection packageName="expo-build-properties" apiName="BuildProperties" />
/expo/docs/pages/versions/v49.0.0/sdk/
H A Dbuild-properties.mdx3 description: A config plugin that allows customizing native build properties during prebuild.
4 sourceCodeUrl: 'https://github.com/expo/expo/tree/sdk-49/packages/expo-build-properties'
5 packageName: 'expo-build-properties'
13 `expo-build-properties` is a [config plugin](/config-plugins/introduction/) configuring the native …
14 of your **android/gradle.properties** and **ios/Podfile.properties.json** directories during [Prebu…
34 "expo-build-properties",
60 'expo-build-properties',
77 ### All configurable properties
79 …nConfigType`](#pluginconfigtype) interface represents currently available configuration properties.
83 <APISection packageName="expo-build-properties" apiName="BuildProperties" />
/expo/docs/pages/versions/v48.0.0/sdk/
H A Dbuild-properties.mdx3 description: A config plugin that allows customizing native build properties during prebuild.
4 sourceCodeUrl: 'https://github.com/expo/expo/tree/sdk-48/packages/expo-build-properties'
5 packageName: 'expo-build-properties'
13 `expo-build-properties` is a [config plugin](/config-plugins/introduction/) configuring the native …
14 of your **android/gradle.properties** and **ios/Podfile.properties.json** directories during [Prebu…
34 "expo-build-properties",
60 'expo-build-properties',
77 ### All configurable properties
79 …nConfigType`](#pluginconfigtype) interface represents currently available configuration properties.
83 <APISection packageName="expo-build-properties" apiName="BuildProperties" />
/expo/packages/@expo/cli/src/start/server/middleware/
H A DCreateFileMiddleware.ts64 const properties = JSON.parse(rawBody); constant
65 this.assertTouchFileBody(properties);
67 return properties;
89 let properties: TouchFileBody;
92 properties = await this.parseRawBody(req);
100 debug(`Requested: %O`, properties);
102 const resolvedPath = properties.absolutePath
103 ? this.resolveExtension(path.resolve(properties.absolutePath))
104 : this.resolvePath(properties.path);
116 await fs.promises.writeFile(resolvedPath, properties.contents, 'utf8');
/expo/docs/pages/versions/v47.0.0/sdk/
H A Dbuild-properties.mdx3 description: A config plugin that allows customizing native build properties during prebuild.
4 sourceCodeUrl: 'https://github.com/expo/expo/tree/sdk-47/packages/expo-build-properties'
5 packageName: 'expo-build-properties'
13properties`** is a [config plugin](/config-plugins/introduction/) configuring the native build pro…
30 "expo-build-properties",
49 ### Full configurable properties
55 <APISection packageName="expo-build-properties" apiName="BuildProperties" />
/expo/docs/pages/versions/v46.0.0/sdk/
H A Dbuild-properties.mdx3 description: A config plugin that allows customizing native build properties during prebuild.
4 sourceCodeUrl: 'https://github.com/expo/expo/tree/sdk-46/packages/expo-build-properties'
5 packageName: 'expo-build-properties'
13properties`** is a [config plugin](/config-plugins/introduction/) for [managed apps](/archive/mana…
32 "expo-build-properties",
51 ### Full configurable properties
57 <APISection packageName="expo-build-properties" apiName="BuildProperties" />
/expo/packages/expo-build-properties/
H A DREADME.md1 # expo-build-properties
3 **`expo-build-properties`** is a [config plugin](https://docs.expo.dev/config-plugins/introduction/…
13 npx expo install expo-build-properties
23 "expo-build-properties",
46 …n]: https://github.com/expo/expo/blob/main/docs/pages/versions/unversioned/sdk/build-properties.mdx
47 [docs-stable]: https://docs.expo.dev/versions/latest/sdk/build-properties/
/expo/packages/create-expo/src/__tests__/
H A Dtelemetry.test.ts49 properties: { phase: AnalyticsEventPhases.ATTEMPT },
53 properties: { phase: AnalyticsEventPhases.SUCCESS },
93 properties: {
106 properties: {
118 properties: { phase: AnalyticsEventPhases.ATTEMPT },
122 properties: { phase: AnalyticsEventPhases.SUCCESS },
134 properties: { phase: AnalyticsEventPhases.ATTEMPT },
138 properties: { phase: AnalyticsEventPhases.SUCCESS },
207 properties: {
221 properties: {
[all …]
/expo/packages/@expo/cli/src/utils/analytics/__tests__/
H A DgetMetroDebugProperties-test.ts19 const properties = getMetroDebugProperties('/fake-project', fakeExpoConfig, debugTool); constant
21 expect(properties).toMatchObject({
29 const properties = getMetroDebugProperties('/fake-project', fakeExpoConfig, debugTool); constant
31 expect(properties).toMatchObject({
H A DgetMetroProperties-test.ts10 const { sdkVersion, metroVersion, ...properties } = getMetroProperties(
18 expect(Object.keys(properties).length).toBeGreaterThan(0);
19 expect(Object.values(properties).every((value) => value === undefined)).toBe(true);
/expo/packages/@expo/config-plugins/src/android/
H A DScheme.ts124 const properties = propertiesFromIntentFilter(intentFilter); constant
125 if (isValidRedirectIntentFilter(properties) && properties.data) {
126 for (const { scheme, host } of properties.data) {
147 const properties = propertiesFromIntentFilter(intentFilter); constant
148 if (isValidRedirectIntentFilter(properties)) {
184 const properties = propertiesFromIntentFilter(intentFilter); constant
185 if (isValidRedirectIntentFilter(properties)) {
209 const properties = propertiesFromIntentFilter(intentFilter); constant
210 if (isValidRedirectIntentFilter(properties)) {
/expo/packages/@expo/cli/src/api/
H A DgetExpoSchema.ts38 const properties = node.properties;
39 if (properties) {
40 Object.keys(properties).forEach((property) =>
41 visit(properties[property], `${fieldPath}${fieldPath.length > 0 ? '.' : ''}${property}`)
/expo/packages/expo-dev-launcher/plugin/src/
H A DpluginConfig.ts37 properties: {
41 properties: {
48 properties: {
/expo/packages/@expo/config-plugins/build/utils/
H A DBuildProperties.types.js.map1properties\n *\n * @example\n * ```ts\n * {\n * propName: 'expo.jsEngine',\n * propValueGetter…
/expo/packages/expo-dev-launcher/plugin/build/
H A DpluginConfig.js10 properties: { property
14 properties: { property
21 properties: { property
/expo/apps/native-component-list/src/components/FunctionDemo/
H A DFunctionSignature.tsx52 const properties = parameter.properties
54 // skip object properties unsupported on the current platform
69 } is missing in argument. Available parameter properties: ${parameter.properties
71 .join(', ')} and argument properties: ${Object.keys(arg).join(', ')}`
93 return `{\n ${properties}\n}`;
H A DConfigurator.tsx23 parameter.properties.map(({ name, ...properties }) => (
25 {...properties}
/expo/packages/@expo/config-plugins/build/android/
H A DScheme.js129 const properties = propertiesFromIntentFilter(intentFilter);
130 if (isValidRedirectIntentFilter(properties) && properties.data) {
134 } of properties.data) {
153 const properties = propertiesFromIntentFilter(intentFilter);
154 if (isValidRedirectIntentFilter(properties)) {
196 const properties = propertiesFromIntentFilter(intentFilter);
197 if (isValidRedirectIntentFilter(properties)) {
222 const properties = propertiesFromIntentFilter(intentFilter);
223 if (isValidRedirectIntentFilter(properties)) {
/expo/packages/create-expo-module/src/
H A Dtelemetry.ts73 properties: Record<string, any>;
93 properties: { ...event.properties, ...commonProperties },
102 properties: {
/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/Libraries/SurfaceBackedComponent/
H A DABI47_0_0RCTSurfaceBackedComponent.mm30 properties:(NSDictionary *)properties
38 …utableDictionary *adjustedProperties = [[NSMutableDictionary alloc] initWithDictionary:properties];
59 if (![state.surface.properties isEqualToDictionary:adjustedProperties]) {
60 state.surface.properties = adjustedProperties;
H A DABI47_0_0RCTSurfaceBackedComponent.h25 properties:(NSDictionary *)properties
/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/Libraries/SurfaceBackedComponent/
H A DABI49_0_0RCTSurfaceBackedComponent.mm30 properties:(NSDictionary *)properties
38 …utableDictionary *adjustedProperties = [[NSMutableDictionary alloc] initWithDictionary:properties];
56 if (![state.surface.properties isEqualToDictionary:adjustedProperties]) {
57 state.surface.properties = adjustedProperties;
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/Libraries/SurfaceBackedComponent/
H A DABI48_0_0RCTSurfaceBackedComponent.mm30 properties:(NSDictionary *)properties
38 …utableDictionary *adjustedProperties = [[NSMutableDictionary alloc] initWithDictionary:properties];
56 if (![state.surface.properties isEqualToDictionary:adjustedProperties]) {
57 state.surface.properties = adjustedProperties;
/expo/docs/components/plugins/ConfigSection/
H A DConfigPluginProperties.tsx10 properties: PluginProperty[];
13 export const ConfigPluginProperties = ({ children, properties }: Props) => (
15 <H3>Configurable properties</H3>
26 {properties.map(property => (
/expo/packages/create-expo-module/build/
H A Dtelemetry.d.ts6 properties: Record<string, any>;
11 properties: {

12345678910>>...25