I am trying to figure out how to configure expo-updates
for OTA updates in my React Native app (for Android). If I understand correctly, I need a way of versioning the builds so that the right updates go to the right builds of the app that people may have installed on their devices. This can be achieved in two ways (note that I am using expo-cli
to manage my workflow):
Via
runtimeVersion
, which is set inexpo.modules.updates.EXPO_RUNTIME_VERSION
in theAndroidManifest.xml
file:... <meta-data android:name="expo.modules.updates.EXPO_RUNTIME_VERSION" android:value="1.001"/> ...
In this case, I have to increment the value of the Runtime Version every time I make a change that involves installing new packages or any other change which is not purely related to the JavaScript of the app.
Via
sdkVersion
, which is set inexpo.modules.updates.EXPO_SDK_VERSION
in theAndroidManifest.xml
file:... <meta-data android:name="expo.modules.updates.EXPO_SDK_VERSION" android:value="44.0.0"/> ...
In this case, I also have to increment the value of the SDK Version every time I make a big change as the one described before.
So, these are the two possible ways in which I understand that I can manage these versions (one or the other). However, I was confused about the fact that the parameters sdkVersion
and runtimeVersion
are also present in the file app.json
.
...
"name": "MyApp",
"expo": {
"name": "MyApp",
"slug": "myapp",
"version": "1.0.0",
"runtimeVersion": "1.001",
"icon": "./assets/icon.png",
...
or
...
"name": "MyApp",
"expo": {
"name": "MyApp",
"slug": "myapp",
"version": "1.0.0",
"sdkVersion": "44.0.0",
"icon": "./assets/icon.png",
...
Is this another way of defining these parameters? It would certainly be a lot easier than having to dig out the AndroidMainfest.xml
. Also, there are other version-related parameters like version
in both app.json
and packages.json
. Are these related to the same thing, or are they something else entirely?
Finally, what is the general convention as to the formatting of the version numbers in both cases?
So, the way I am finally doing it is as follows:
In
project_root/android/app/src/main/AndroidManifest.xml
:In
package.json
:In
app.json
:There is no need to touch the
AndroidManifest.xml
file at all when incrementing the version numbers. You only need to change theversion
value inpackage.json
andapp.json
.