Wish Cross platform version number

Alessandro71

Well-Known Member
Licensed User
Longtime User
While maintaining an app on both Android and iOS, I must manually set version number on 2 different source files and keep them in sync at each release

B4A:
#Region Module Attributes
    #VersionCode: 341

B4i:
#Region  Project Attributes
    #Version: 1.0.341

A platform-agnostic attribute would be great
 
D

Deleted member 103

Guest
While maintaining an app on both Android and iOS, I must manually set version number on 2 different source files and keep them in sync at each release

B4A:
#Region Module Attributes
    #VersionCode: 341

B4i:
#Region  Project Attributes
    #Version: 1.0.341

A platform-agnostic attribute would be great
Why should the version number be the same?
Often a bug is only on Android or iOS, so an update must be made only for these for a system.
 

Alessandro71

Well-Known Member
Licensed User
Longtime User
Why should the version number be the same?
Often a bug is only on Android or iOS, so an update must be made only for these for a system.
platform specific bugs are just minor case, and for sake of simplicity I always keep version number aligned between platforms
 
Top