How to update version number of react native app

前端 未结 6 1433
时光说笑
时光说笑 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:49

    I had the same problem and I checked all the above answer, I had a made a silly mistake because of which nothing worked for me. Just in case any of you do same mistake as mine try this.

    1. Version can be a decimal number like 1.0 or 1.0.1 etc
    2. But VersionCode cannot be decimal number It should be 1,2,3 etc and not 1.1 or 2.2

    So in project/app/build.gradle

    android {
    defaultConfig {
        versionCode 1 // do not use decimal number here
        versionName "1.0" // you can use decimal number here.
        {...}
    }
    {...}
    }
    

提交回复
热议问题