| Name | Date | Size | #Lines | LOC | ||
|---|---|---|---|---|---|---|
| .. | 26-Sep-2023 | - | ||||
| android/ | H | 26-Sep-2023 | - | 18,265 | 15,250 | |
| bin/ | H | 26-Sep-2023 | - | 4 | 2 | |
| build/ | H | 26-Sep-2023 | - | 1,647 | 720 | |
| cli/ | H | 26-Sep-2023 | - | 673 | 537 | |
| e2e/ | H | 26-Sep-2023 | - | 3,325 | 2,696 | |
| expo-updates-gradle-plugin/ | H | 26-Sep-2023 | - | 411 | 314 | |
| guides/ | H | 26-Sep-2023 | - | 208 | 145 | |
| ios/ | H | 26-Sep-2023 | - | 19,075 | 14,773 | |
| plugin/ | H | 26-Sep-2023 | - | 121 | 93 | |
| scripts/ | H | 26-Sep-2023 | - | 313 | 228 | |
| src/ | H | 26-Sep-2023 | - | 2,005 | 1,226 | |
| ts-declarations/xcode/ | H | 26-Sep-2023 | - | 481 | 394 | |
| .eslintrc.js | H A D | 26-Sep-2023 | 103 | 3 | 1 | |
| .gitignore | H A D | 26-Sep-2023 | 9 | 1 | 1 | |
| .npmignore | H A D | 26-Sep-2023 | 183 | 12 | 8 | |
| CHANGELOG.md | H A D | 26-Sep-2023 | 60.6 KiB | 970 | 589 | |
| DEVELOPMENT.md | H A D | 26-Sep-2023 | 4.6 KiB | 77 | 43 | |
| README.md | H A D | 26-Sep-2023 | 1.3 KiB | 29 | 20 | |
| app.plugin.js | H A D | 26-Sep-2023 | 55 | 2 | 1 | |
| babel.config.js | H A D | 26-Sep-2023 | 104 | 3 | 1 | |
| bundle-expo-assets.sh | H A D | 26-Sep-2023 | 462 | 18 | 13 | |
| expo-module.config.json | H A D | 26-Sep-2023 | 439 | 19 | 18 | |
| expo-updates.gradle | H A D | 26-Sep-2023 | 2.2 KiB | 65 | 48 | |
| jest.cli.config.js | H A D | 26-Sep-2023 | 271 | 15 | 14 | |
| package.json | H A D | 26-Sep-2023 | 1.8 KiB | 68 | 67 | |
| run-expo.bat | H A D | 26-Sep-2023 | 89 | 4 | 3 | |
| run-expo.sh | H A D | 26-Sep-2023 | 77 | 5 | 2 | |
| tsconfig.cli.json | H A D | 26-Sep-2023 | 450 | 18 | 17 | |
| tsconfig.json | H A D | 26-Sep-2023 | 217 | 10 | 9 |
README.md
1<p> 2 <a href="https://docs.expo.dev/versions/latest/sdk/updates/"> 3 <img 4 src="../../.github/resources/expo-updates.svg" 5 alt="expo-updates" 6 height="64" /> 7 </a> 8</p> 9 10The `expo-updates` module allows your app to download and manage remote updates to your application code. 11 12This module works with a server that implements the [Expo Update protocol](https://docs.expo.dev/technical-specs/expo-updates-1/). 13 14The [EAS Update](https://docs.expo.dev/eas-update/introduction/) hosted service implements this protocol. 15 16To build a custom server that implements the protocol, see the example server source code [here](https://github.com/expo/custom-expo-updates-server). 17 18## Important documentation links 19 20- [Getting started](https://docs.expo.dev/eas-update/getting-started/) 21- [How EAS Update works](https://docs.expo.dev/eas-update/how-it-works/) 22- [Debugging](https://docs.expo.dev/eas-update/debug/) 23- [Migration from Classic Updates](https://docs.expo.dev/eas-update/migrate-from-classic-updates/) 24- [Updates JS API](https://docs.expo.dev/versions/latest/sdk/updates/) 25 26# Installation in bare React Native projects 27 28Learn how to install expo-updates in your project in the [Installing expo-updates documentation page](https://docs.expo.dev/bare/installing-updates/). 29