How to update version number of react native app

前端 未结 6 1432
时光说笑
时光说笑 2020-12-12 10:49

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

6条回答
  •  星月不相逢
    2020-12-12 11:23

    You should be changing your versionCode and versionName in android/app/build.gradle:

    android {
    
        defaultConfig {
    
            versionCode 1
            versionName "1.0"
    
            {...}
        }
    
        {...}
    }
    

提交回复
热议问题