Lines Matching refs:of
3 This guide provides an overview of what you need to know to contribute to the Expo iOS project. It …
12 - When we release a new SDK version, we push a release branch of the form `ios/sdkNN`.
13 - Specific versions of the iOS Expo Client are tagged from that release branch, such as `ios/1.19.0…
15 - If we're near the end of a SDK cycle, we may be operating on a SDK candidate branch instead of `m…
19 - Target `main` most of the time. If there's a SDK candidate branch (a few days near the end of the…
20 - We don't maintain an explicit style guide, so for now it's best to just observe what the rest of …
30 The `EXShellManager` class keeps track of how the code is being run. Mostly it reads the contents o…
37 …o Client) and `ExpoKit.podspec` (for standalone apps, which use almost all of the same code as Exp…
48 …an run Expo projects using any of the last several Expo SDK versions. To support this, it includes…
50 …ode for each SDK version includes a copy of React Native corresponding to that SDK version, as wel…
66 …. The Kernel is a piece of code which can run and manage multiple React Native apps at once. Most …
69 - They can be running different versions of React Native from each other.
75 …it library (see `ExpoKit.podspec`). The Expo Client is just a special user of ExpoKit. Therefore i…
83 - All of the Expo SDK native modules, components, view managers, etc. This code is the "unversioned…
85 - You can see older versions of this directory under `versioned-react-native/ABI*/Exponent`.
93 …wo subclasses: `EXKernelReactAppManager`, which owns a privileged instance of the Expo Home experi…
95 There may be many instances of `EXFrameReactAppManager` at once, but there will only ever be one in…
97 A ReactAppManager keeps track of the lifecycle of a React Native app. Though it is unversioned, it …
105 The Bridge Registry keeps track of all the React Native bridges running at a given time, including …
109 The Services Registry contains a set of "services" which represent shared device resources. They ar…