1---
2title: Runtime Versions
3---
4
5> **warning** Custom runtime versions are not supported on the classic build system (`expo build`); these apps will always use the SDK version as the basis for determining runtime compatibility.
6
7Every update targets one compatible runtime. Each time you build a binary for your app it includes the native code present at the time of the build and only that code, and this unique combination and configuration of the build is what is represented by the runtime version.
8
9By default, the runtime version is determined by the Expo SDK version, but this will not adequately describe the different runtime versions of your app if you build more than once per SDK release. In this case, you will need to specify a `runtimeVersion` to ensure your updates are delivered only to compatible builds. This `runtimeVersion` should be updated whenever you update your project's native modules and change the JS–native interface.
10
11The runtime version string must conform to [this format](/versions/latest/config/app.mdx#runtimeversion).
12
13## Setting the runtime version for an update
14
15Updates published with the runtime version set in **app.json** will be delivered to builds running the same runtime version, and only to those builds.
16
17```json
18{
19  "expo": {
20    "runtimeVersion": "2.718"
21  }
22}
23```
24
25## Setting the runtime version for a build
26
27### Configuration for the managed workflow
28
29If you are using the [managed workflow](../introduction/managed-vs-bare/#managed-workflow), `runtimeVersion` is specified in **app.json**:
30
31```json
32{
33  "expo": {
34    "runtimeVersion": "2.718"
35  }
36}
37```
38
39### Configuration for the bare workflow
40
41If you are using the [bare workflow](/introduction/managed-vs-bare.mdx#bare-workflow), set the runtime version in **Expo.plist** on iOS and **AndroidManifest.xml** on Android.
42
43For an iOS build, add an entry to the **Expo.plist** with the key `EXUpdatesRuntimeVersion`. The value is a string that represents the runtime version.
44
45```diff
46+ <key>EXUpdatesRuntimeVersion</key>
47+ <string>2.718</string>
48```
49
50For an Android build, add a `<meta-data>` element to the **AndroidManifest.xml** whose `android:name` attribute is `expo.modules.updates.EXPO_RUNTIME_VERSION` and `android:value` attribute is a string that represents the desired runtime version.
51
52```diff
53+ <meta-data android:name="expo.modules.updates.EXPO_RUNTIME_VERSION" android:value="2.718"/>
54```
55
56## FAQ
57
58### Can I have a different runtime version on iOS and Android?
59
60Yes, if you want to be able to control the runtime version on a platform level, you can:
61
621. Have platform specific channels: `ios-production`, `android-production`.
632. Have platform specific runtime versions: `ios-1.0.0`, `android-1.0.0`.
64
65However, you cannot set a platform specific configuration field such as `ios.runtimeVersion` or `android.runtimeVersion`
66
67### Can I test updates with a custom runtime version on Expo Go?
68
69Expo Go is meant for updates targeting an Expo SDK. If you want to test an update targeting a custom runtime version, you should use a [development build](/development/introduction.mdx).
70