Is there a max value for versioncode?

前端 未结 3 1697
天命终不由人
天命终不由人 2020-12-30 21:09

We always have to increment versionCode by some arbitary number to publish it to google play.
Is there limit to that value and what will happen if it is rea

3条回答
  •  天命终不由人
    2020-12-30 21:40

    According to android documentation and the gradle DSL documentation:

    android:versionCode — An integer value that represents the version of the application code, relative to other versions.

    Checking the java doc, by default, the int data type is a 32-bit signed two's complement integer, which has a minimum value of -2^31 and a maximum value of (2^31)-1.

    Then the maximum value is 2^31-1.

提交回复
热议问题