how to incree the version code in react native code example
Example 1: expo update react native
expo install expo-updates
Example 2: react native android version code
// android/app/build.gradle
android {
defaultConfig {
versionCode 1
versionName "1.0"
{...}
}
{...}
}