I am using React native with Android. How can I update version number in the app? As I am getting this error.
I am generating file as per this url https://facebook.g
You should be changing your versionCode and versionName in android/app/build.gradle:
versionCode
versionName
android/app/build.gradle
android { defaultConfig { versionCode 1 versionName "1.0" {...} } {...} }