react-native change app version code example
Example 1: react native init specific version
react-native init projectname --version 0.60.0
Example 2: react native android version code
// android/app/build.gradle
android {
defaultConfig {
versionCode 1
versionName "1.0"
{...}
}
{...}
}