| /expo/packages/expo-router/build/global-state/ |
| H A D | router-store.js | 115 exports.store.rootState = state; 116 exports.store.nextState = nextState; 119 exports.store.routeInfo = nextRouteInfo; 157 exports.store = new RouterStore(); variable in exports 159 …urn (0, react_1.useSyncExternalStore)(exports.store.subscribeToStore, exports.store.snapshot, expo… 163 if (exports.store.navigationRef.isReady()) { 165 if (exports.store.rootState !== currentState) { 166 exports.store.updateState(currentState); 172 … react_1.useSyncExternalStore)(exports.store.subscribeToRootState, exports.store.rootStateSnapshot… 177 … react_1.useSyncExternalStore)(exports.store.subscribeToRootState, exports.store.routeInfoSnapshot… [all …]
|
| /expo/packages/expo-router/src/ |
| H A D | imperative-api.ts | 1 import { store } from './global-state/router-store'; 5 push: (href) => store.push(href), 6 replace: (href) => store.replace(href), 7 back: () => store.goBack(), 8 canGoBack: () => store.canGoBack(), 9 setParams: (params) => store.setParams(params),
|
| H A D | hooks.ts | 4 import { store, useStoreRootState, useStoreRouteInfo } from './global-state/router-store'; 18 return store.navigationRef.current; 24 push: store.push, 25 back: store.goBack, 26 replace: store.replace, 27 setParams: store.setParams, 28 canGoBack: store.canGoBack,
|
| /expo/packages/expo-router/build/ |
| H A D | imperative-api.js | 6 push: (href) => router_store_1.store.push(href), 7 replace: (href) => router_store_1.store.replace(href), 8 back: () => router_store_1.store.goBack(), 9 canGoBack: () => router_store_1.store.canGoBack(), 10 setParams: (params) => router_store_1.store.setParams(params),
|
| H A D | imperative-api.js.map | 1 …store } from './global-state/router-store';\nimport { Router } from './types';\n\nexport const rou…
|
| H A D | hooks.js | 19 return router_store_1.store.navigationRef.current; 24 push: router_store_1.store.push, 25 back: router_store_1.store.goBack, 26 replace: router_store_1.store.replace, 27 setParams: router_store_1.store.setParams, 28 canGoBack: router_store_1.store.canGoBack,
|
| /expo/docs/pages/eas/metadata/ |
| H A D | getting-started.mdx | 12 …omate and maintain your app store presence from the command line. It uses a [**store.config.json**… 20 ## Create the store config 28 … in the stores yet, EAS Metadata can't generate the store config for you. Instead, create a new st… 30 ```json store.config.json 51 ## Update the store config 53 …'s time to edit the **store.config.json** file and customize it to your app needs. You can find al… 59 After the binary is submitted and processed, we can push the store config to the app stores. 61 ## Upload the store config 63 When you are happy with the **store.config.json** settings, we can send it to the app stores. You c… 69 When the store config partially fails, you can change the store config and retry. `eas metadata:pus… [all …]
|
| H A D | config.mdx | 3 sidebar_title: store.config.json 16 ## Static store config 18 The default store config type for EAS Metadata is a simple JSON file. 25 ```json store.config.json 44 ## Dynamic store config 52 <CodeBlocksTable tabs={['store.config.js', 'eas.json']}> 56 const config = require('./store.config.json'); 69 "metadataPath": "./store.config.js" 86 <CodeBlocksTable tabs={['store.config.js', 'eas.json']}> 90 const config = require('./store.config.json'); [all …]
|
| H A D | faq.mdx | 17 …g EAS Metadata by [creating a new or generating a store config](./getting-started.mdx#create-the-s… 18 This store config lets you quickly update the app store information without leaving your project en… 27 ### Extensible with dynamic store config 29 EAS Metadata also supports a more [dynamic store config](./config.mdx#dynamic-store-config), instea… 30 This dynamic store config allows you to gather information from other places like external services. 42 See the [store config schema](./schema.mdx#config-schema) for all existing functionality. 44 ### How do I use unsupported app store features? 46 EAS Metadata only sends the data from your store config to the app stores. 49 … something in the app store dashboards, make sure to run `eas metadata:pull` after these changes. … 51 ### Using restricted app store accounts [all …]
|
| H A D | index.mdx | 5 description: An introduction to automate and maintain your app store presence from the command line… 13 **EAS Metadata** enables you to automate and maintain your app store presence from the command line. 17 …store.config.json**](./config.mdx#static-store-config) file to provide information instead of goin… 21 EAS Metadata can also instantly identify known app store restrictions that could trigger a rejectio… 23 Adding the store config file to your repository enables you to collaborate with other team members … 25 …scode-expo#readme) for auto-complete, suggestions, and warnings in your **store.config.json** file… 32 …description="Add EAS Metadata to a new project, or generate the store config from an existing app." 37 title="Customize the store config" 38 description="Customize the store config to adapt EAS Metadata to your preferred workflow."
|
| /expo/ios/vendored/sdk48/react-native-reanimated/Common/cpp/Tools/ |
| H A D | JSIStoreValueUser.cpp | 11 if (storeUserData->store.count(identifier) == 0) { in getWeakRef() 12 storeUserData->store[identifier] = in getWeakRef() 17 storeUserData->store[identifier].push_back(sv); in getWeakRef() 39 if (sud->store.count(id) > 0) { in ~StoreUser() 40 sud->store.erase(id); in ~StoreUser() 47 if (sud->store.count(id) > 0) { in ~StoreUser() 48 sud->store.erase(id); in ~StoreUser()
|
| /expo/android/vendored/sdk48/react-native-reanimated/Common/cpp/Tools/ |
| H A D | JSIStoreValueUser.cpp | 11 if (storeUserData->store.count(identifier) == 0) { in getWeakRef() 12 storeUserData->store[identifier] = in getWeakRef() 17 storeUserData->store[identifier].push_back(sv); in getWeakRef() 39 if (sud->store.count(id) > 0) { in ~StoreUser() 40 sud->store.erase(id); in ~StoreUser() 47 if (sud->store.count(id) > 0) { in ~StoreUser() 48 sud->store.erase(id); in ~StoreUser()
|
| /expo/ios/vendored/sdk47/react-native-reanimated/Common/cpp/Tools/ |
| H A D | JSIStoreValueUser.cpp | 11 if (storeUserData->store.count(identifier) == 0) { in getWeakRef() 12 storeUserData->store[identifier] = in getWeakRef() 17 storeUserData->store[identifier].push_back(sv); in getWeakRef() 39 if (sud->store.count(id) > 0) { in ~StoreUser() 40 sud->store.erase(id); in ~StoreUser() 47 if (sud->store.count(id) > 0) { in ~StoreUser() 48 sud->store.erase(id); in ~StoreUser()
|
| /expo/android/vendored/sdk47/react-native-reanimated/Common/cpp/Tools/ |
| H A D | JSIStoreValueUser.cpp | 11 if (storeUserData->store.count(identifier) == 0) { in getWeakRef() 12 storeUserData->store[identifier] = in getWeakRef() 17 storeUserData->store[identifier].push_back(sv); in getWeakRef() 39 if (sud->store.count(id) > 0) { in ~StoreUser() 40 sud->store.erase(id); in ~StoreUser() 47 if (sud->store.count(id) > 0) { in ~StoreUser() 48 sud->store.erase(id); in ~StoreUser()
|
| /expo/docs/.vale/writing-styles/expo-docs/ |
| H A D | Stores.yml | 7 apple app store: Apple App Store 9 Apple app store: Apple App Store 11 Apple App store: Apple App Store 12 google play store: Google Play Store 13 Google play store: Google Play Store 14 Google Play store: Google Play Store
|
| /expo/packages/expo-router/src/__tests__/ |
| H A D | globalState.test.node.tsx | 3 import { RouterStore, store } from '../global-state/router-store'; 8 store.initialize(inMemoryContext({}), createNavigationContainerRef()); 10 expect(store).toMatchObject({ 24 store.initialize( 31 expect(store).toMatchObject({ 89 store.initialize( 99 expect(store).toMatchObject({
|
| /expo/packages/expo-router/src/global-state/ |
| H A D | router-store.tsx | 146 store.rootState = state; 147 store.nextState = nextState; 152 store.routeInfo = nextRouteInfo; 199 return useSyncExternalStore(store.subscribeToStore, store.snapshot, store.snapshot); 215 store.subscribeToRootState, 216 store.rootStateSnapshot, 217 store.rootStateSnapshot 224 store.subscribeToRootState, 225 store.routeInfoSnapshot, 226 store.routeInfoSnapshot [all …]
|
| /expo/docs/pages/deploy/ |
| H A D | app-stores-metadata.mdx | 3 description: Learn how to automate and maintain your app store presence from the command line with … 14 …store dashboards. It can also instantly identify well-known app store restrictions that could trig… 22 ## Create a store config 26 Create a new **store.config.json** file at the root of your project directory as shown in the examp… 28 ```json store.config.json 51 > For more information on properties that can be defined in **store.config.json**, see [Schema for … 53 ## Upload the store config 57 … you have created the **store.config.json** file and added the necessary information related to yo… 63 You can also re-use this command when you modify the **store.config.json** file and want to push th… 69 …description="Learn how to automate and maintain your app store presence from the command line with… [all …]
|
| /expo/docs/pages/versions/unversioned/sdk/ |
| H A D | storereview.mdx | 4 sourceCodeUrl: 'https://github.com/expo/expo/tree/main/packages/expo-store-review' 5 packageName: 'expo-store-review' 16 src="/static/images/store-review.png" 17 alt="Screenshots of the store review API in action on iOS" 24 > `expo-linking` is a peer dependency and must be installed alongside `expo-store-review`. 26 <APIInstallSection packageName="expo-store-review expo-linking" /> 48 Linking.openURL(`https://apps.apple.com/app/apple-store/id${itunesItemId}?action=write-review`); 63 `https://play.google.com/store/apps/details?id=${androidPackageName}&showAllReviews=true` 72 import * as StoreReview from 'expo-store-review'; 75 <APISection packageName="expo-store-review" apiName="StoreReview" /> [all …]
|
| /expo/docs/pages/versions/v48.0.0/sdk/ |
| H A D | storereview.mdx | 4 sourceCodeUrl: 'https://github.com/expo/expo/tree/sdk-48/packages/expo-store-review' 5 packageName: 'expo-store-review' 16 src="/static/images/store-review.png" 17 alt="Screenshots of the store review API in action on iOS" 24 > `expo-linking` is a peer dependency and must be installed alongside `expo-store-review`. 26 <APIInstallSection packageName="expo-store-review expo-linking" /> 48 Linking.openURL(`https://apps.apple.com/app/apple-store/id${itunesItemId}?action=write-review`); 63 `https://play.google.com/store/apps/details?id=${androidPackageName}&showAllReviews=true` 72 import * as StoreReview from 'expo-store-review'; 75 <APISection packageName="expo-store-review" apiName="StoreReview" /> [all …]
|
| /expo/docs/pages/versions/v49.0.0/sdk/ |
| H A D | storereview.mdx | 4 sourceCodeUrl: 'https://github.com/expo/expo/tree/sdk-49/packages/expo-store-review' 5 packageName: 'expo-store-review' 16 src="/static/images/store-review.png" 17 alt="Screenshots of the store review API in action on iOS" 24 > `expo-linking` is a peer dependency and must be installed alongside `expo-store-review`. 26 <APIInstallSection packageName="expo-store-review expo-linking" /> 48 Linking.openURL(`https://apps.apple.com/app/apple-store/id${itunesItemId}?action=write-review`); 63 `https://play.google.com/store/apps/details?id=${androidPackageName}&showAllReviews=true` 72 import * as StoreReview from 'expo-store-review'; 75 <APISection packageName="expo-store-review" apiName="StoreReview" /> [all …]
|
| /expo/docs/pages/versions/v47.0.0/sdk/ |
| H A D | storereview.mdx | 4 sourceCodeUrl: 'https://github.com/expo/expo/tree/sdk-47/packages/expo-store-review' 5 packageName: 'expo-store-review' 16 src="/static/images/store-review.png" 17 alt="Screenshots of the store review API in action on iOS" 24 > `expo-linking` is a peer dependency and must be installed alongside `expo-store-review`. 26 <APIInstallSection packageName="expo-store-review expo-linking" /> 48 Linking.openURL(`https://apps.apple.com/app/apple-store/id${itunesItemId}?action=write-review`); 63 `https://play.google.com/store/apps/details?id=${androidPackageName}&showAllReviews=true` 72 import * as StoreReview from 'expo-store-review'; 75 <APISection packageName="expo-store-review" apiName="StoreReview" /> [all …]
|
| /expo/packages/expo-notifications/android/src/main/java/expo/modules/notifications/service/delegates/ |
| H A D | ExpoSchedulingDelegate.kt | 18 protected val store = SharedPreferencesNotificationsStore(context) in <lambda>() constant 22 store.allNotificationRequests.forEach { in <lambda>() 33 store.allNotificationRequests in <lambda>() 36 store.getNotificationRequest(identifier) in <lambda>() 61 store.saveNotificationRequest(request) in <lambda>() 69 val notificationRequest: NotificationRequest = store.getNotificationRequest(identifier)!! in <lambda>() 90 store.removeNotificationRequest(it) in <lambda>() 95 store.removeAllNotificationRequests().forEach { in <lambda>()
|
| /expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/notifications/service/delegates/ |
| H A D | ExpoSchedulingDelegate.kt | 18 protected val store = SharedPreferencesNotificationsStore(context) in <lambda>() constant 22 store.allNotificationRequests.forEach { in <lambda>() 33 store.allNotificationRequests in <lambda>() 36 store.getNotificationRequest(identifier) in <lambda>() 61 store.saveNotificationRequest(request) in <lambda>() 69 val notificationRequest: NotificationRequest = store.getNotificationRequest(identifier)!! in <lambda>() 90 store.removeNotificationRequest(it) in <lambda>() 95 store.removeAllNotificationRequests().forEach { in <lambda>()
|
| /expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/notifications/service/delegates/ |
| H A D | ExpoSchedulingDelegate.kt | 18 protected val store = SharedPreferencesNotificationsStore(context) in <lambda>() constant in abi48_0_0.expo.modules.notifications.service.delegates.ExpoSchedulingDelegate 22 store.allNotificationRequests.forEach { in <lambda>() 33 store.allNotificationRequests in <lambda>() 36 store.getNotificationRequest(identifier) in <lambda>() 61 store.saveNotificationRequest(request) in <lambda>() 69 val notificationRequest: NotificationRequest = store.getNotificationRequest(identifier)!! in <lambda>() 90 store.removeNotificationRequest(it) in <lambda>() 95 store.removeAllNotificationRequests().forEach { in <lambda>()
|