Home
last modified time | relevance | path

Searched refs:apps (Results 1 – 25 of 443) sorted by relevance

12345678910>>...18

/expo/packages/@expo/cli/src/start/server/middleware/inspector/
H A DJsInspector.ts43 const apps = await queryAllInspectorAppsAsync(metroServerOrigin); constant
44 return apps.find((app) => app.description === appId) ?? null;
51 const apps: MetroInspectorProxyApp[] = transformApps(await resp.json()); constant
53 return apps.filter((app) => app.title === 'React Native Experimental (Improved Chrome Reloads)');
58 function transformApps(apps: MetroInspectorProxyApp[]): MetroInspectorProxyApp[] {
61 for (const app of apps) {
69 return apps.map((app) => {
/expo/home/screens/ProjectsListScreen/
H A Dindex.tsx18 const apps = data?.account.byName.apps;
24 offset: apps?.length || 0,
27 }, [fetchMore, apps]);
36 apps,
H A DProjectList.tsx24 data: { apps?: CommonAppDataFragment[]; appCount?: number };
60 if (!props.data?.apps?.length) {
112 const currentAppCount = data.apps?.length ?? 0;
142 last={index === (data.apps ?? []).length - 1}
146 [data.apps]
156 data={data.apps}
/expo/packages/expo-dev-launcher/android/src/testDebug/java/expo/modules/devlauncher/launcher/
H A DDevLauncherRecentlyOpenedAppsRegistryTest.kt20 val apps = registry.getRecentlyOpenedApps() in adds app to registry() constant
21 Truth.assertThat(apps.size).isEqualTo(1) in adds app to registry()
22 Truth.assertThat(apps[0].url).isEqualTo(urlString) in adds app to registry()
41 val apps = registry.getRecentlyOpenedApps() in removes app from registry after 3 days have elapsed() constant
42 Truth.assertThat(apps.size).isEqualTo(0) in removes app from registry after 3 days have elapsed()
/expo/apps/
H A DREADME.md3apps we use for testing Expo. **Do not add new apps to this repository.** Each app increases our m…
5 - #### [bare-expo](https://github.com/expo/expo/tree/main/apps/bare-expo)
7 - #### [jest-expo Mock Generator](https://github.com/expo/expo/tree/main/apps/jest-expo-mock-genera…
11 - #### [Native Component List](https://github.com/expo/expo/tree/main/apps/native-component-list)
13 - #### [Sandbox](https://github.com/expo/expo/tree/main/apps/sandbox)
15 - #### [Test Suite](https://github.com/expo/expo/tree/main/apps/test-suite)
18 … payments), and Native Component List (customized). These would be the only apps in the repository.
/expo/.github/workflows/
H A Dtest-suite.yml9 - apps/bare-expo/**
10 - apps/test-suite/**
16 - apps/bare-expo/**
17 - apps/test-suite/**
49 working-directory: apps/bare-expo
101 working-directory: apps/bare-expo
111 working-directory: apps/bare-expo
114 working-directory: apps/bare-expo
121 working-directory: apps/bare-expo
130 path: apps/bare-expo/artifacts
[all …]
H A Dtest-suite-nightly.yml54 working-directory: apps/bare-expo
57 working-directory: apps/bare-expo/ios
58 - name: �� Install pods in apps/bare-expo/ios
60 working-directory: apps/bare-expo/ios
63 working-directory: apps/bare-expo
66 working-directory: apps/bare-expo
71 working-directory: apps/bare-expo
79 path: apps/bare-expo/artifacts
124 working-directory: apps/bare-expo
175 working-directory: ./apps/bare-expo
[all …]
H A Dtest-suite-lint.yml8 - apps/test-suite/**
11 - apps/test-suite/**
39 working-directory: apps/test-suite
H A Dnative-component-list.yml8 - apps/native-component-list/**
16 - apps/native-component-list/**
48 working-directory: apps/native-component-list
51 working-directory: apps/native-component-list
H A Dpublish-demo.yml10 - apps/**
51 # working-directory: ./apps/native-component-list
54 # working-directory: ./apps/native-component-list
57 # working-directory: ./apps/native-component-list
71 # working-directory: ./apps/native-component-list
H A Dpr-labeler.yml8 - apps/bare-expo/**
9 - apps/test-suite/**
16 - apps/bare-expo/**
17 - apps/test-suite/**
56 working-directory: apps/bare-expo
H A Dclient-android-eas.yml24 - apps/eas-expo-go/**
33 - apps/eas-expo-go/**
99 working-directory: ./apps/eas-expo-go
124 projectRoot: './apps/eas-expo-go'
131 working-directory: ./apps/eas-expo-go
/expo/home/screens/HomeScreen/
H A DProjectsSection.tsx13 apps: CommonAppDataFragment[];
18 export function ProjectsSection({ apps, showMore, accountName }: Props) {
28 {apps.map((project, i) => {
43 last={i === apps.length - 1 && !showMore}
45 {i < apps.length - 1 && <Divider style={{ height: 1 }} />}
/expo/packages/expo-av/build/
H A DAudio.types.js.map1apps on iOS.\n */\n interruptionModeIOS: InterruptionModeIOS;\n /**\n * A boolean selecting …
/expo/docs/pages/
H A Dcore-concepts.mdx11 Expo is an [open-source framework](https://github.com/expo/expo/) for apps that run natively on And…
13 The `expo` npm package enables a suite of incredible features for React Native apps. The `expo` pac…
30 …act from Native to develop from any computer, upgrade easily, white label apps, and maintain large…
35 …description="Manage dependencies, compile native apps, develop for the web, and connect to any dev…
49 | Develop complex apps **entirely** in JavaScript. | <YesIcon /> | <…
51 | Develop apps without Xcode or Android Studio. | <YesIcon /> | <…
52 | Create and share example apps in the browser with [Snack][build/introduction/]. | <YesIcon /> | <…
65 description="The easiest way to build, deploy, and update native apps."
/expo/docs/pages/regulatory-compliance/
H A Dgdpr.mdx9 ## Are apps built with Expo GDPR compliant?
11 **They can be! You can build GDPR compliant apps with Expo if you follow the requirements.**
13 …data and end-user data, we cannot guarantee that the developers who build apps with Expo follow si…
H A Dhipaa.mdx9 ## Are apps built with Expo HIPAA compliant?
11 **They can be! You can build HIPAA compliant apps with Expo if you follow the requirements.**
13 … of the data you collect from your users, so we cannot guarantee that all apps built with Expo are…
/expo/packages/expo-dev-launcher/ios/
H A DEXDevLauncherRecentlyOpenedAppsRegistry.swift73 var apps: [[String: Any]] = [] in recentlyOpenedApps() variable
80 apps.append(appEntry) in recentlyOpenedApps()
84 return apps in recentlyOpenedApps()
/expo/packages/@expo/cli/src/start/interface/
H A DinteractiveActions.ts88 const apps = await queryAllInspectorAppsAsync(metroServerOrigin); constant
89 if (!apps.length) {
98 for (const app of apps) {
/expo/
H A D.gitignore5 bare-apps
84 /apps/bare-expo/android/app/google-services.json
85 /apps/bare-expo/ios/BareExpo/GoogleService-Info.plist
117 # Shell apps
132 apps/bare-expo/deploy-url.txt
/expo/docs/ui/components/Navigation/
H A DNavigation.test.tsx36 node('group', { name: 'Building apps' }, [
41 node('page', { name: 'Create Flutter apps', href: '/parallel-universe/flutter' }),
43 node('page', { name: 'Create broken apps', href: '/parallel-universe/microsoft-uwp' }),
70 expect(screen.getByText('Building apps')).toBeInTheDocument();
71 // Tutorial -> Building apps ->
90 // Tutorial -> Building apps ->
109 group: getNode(section, { name: 'Building apps' }),
/expo/packages/expo-dev-launcher/bundle/providers/
H A DRecentlyOpenedAppsProvider.tsx52 .then((apps) => {
53 // use a map to index apps by their url:
56 for (const app of apps) {
/expo/packages/expo-modules-autolinking/e2e/__tests__/
H A Dmonorepo-test.ts13 const apps = ['ejected', 'managed', 'with-sentry']; constant
14 const testCases = combinations('app', apps, 'platform', ['android', 'ios']);
81 test.each(apps)('%s', async (app) => {
/expo/.github/actions/expo-caches/
H A Daction.yml18 description: 'Restore /apps/bare-expo/ios pods cache'
21 description: 'Restore /apps/native-tests/ios pods cache'
61 description: 'Returns true, if /apps/bare-expo/ios pods cache is up-to-date'
64 description: 'Returns true, if /apps/native-tests/ios pods cache is up-to-date'
85 apps/*/node_modules
86 apps/*/__generated__/AppEntry.js
124 - name: ♻️ Restore apps/bare-expo/ios/Pods from cache
129 path: apps/bare-expo/ios/Pods
130 key: ${{ runner.os }}-bare-expo-pods-${{ hashFiles('apps/bare-expo/ios/Podfile.lock') }}
132 - name: ♻️ Restore apps/native-tests/ios/Pods from cache
[all …]
/expo/docs/pages/eas/
H A Dindex.mdx5 description: Learn about Expo Application Services (EAS) for Expo and React Native apps.
17 Expo Application Services (EAS) are deeply integrated cloud services for Expo and React Native apps
23 description="Compile and sign Android/iOS apps with custom native code in the cloud."

12345678910>>...18