A AndroidMadhu Active Member Licensed User Jun 29, 2021 #1 Hello, If I want to change the App version from integer to float number, is that possible? For Instance B4X: #VersionCode: 1 If I want to change the version like 1.1 [For any delta changes] is that possible? Please advice. Thanks
Hello, If I want to change the App version from integer to float number, is that possible? For Instance B4X: #VersionCode: 1 If I want to change the version like 1.1 [For any delta changes] is that possible? Please advice. Thanks
DonManfred Expert Licensed User Longtime User Jun 29, 2021 #2 AndroidMadhu said: is that possible? Click to expand... no. Google expect an Integer. Upvote 0
AnandGupta Expert Licensed User Longtime User Jun 29, 2021 #3 AndroidMadhu said: If I want to change the version like 1.1 [For any delta changes] is that possible? Click to expand... I use B4X: #VersionCode: 100 #VersionName: 1.00 Upvote 0
AndroidMadhu said: If I want to change the version like 1.1 [For any delta changes] is that possible? Click to expand... I use B4X: #VersionCode: 100 #VersionName: 1.00
asales Expert Licensed User Longtime User Jun 29, 2021 #4 AnandGupta said: I use B4X: #VersionCode: 100 #VersionName: 1.00 Click to expand... I use this way too. Upvote 0
AnandGupta said: I use B4X: #VersionCode: 100 #VersionName: 1.00 Click to expand... I use this way too.
mcqueccu Well-Known Member Licensed User Longtime User Jun 29, 2021 #5 I use 2 digit system which adds up to the version code. Example B4X: #VersionCode: 4 #VersionName: 1.3 3 digit if the app has sqlite DB, the last digit being the DBVersion. Example B4X: #VersionCode: 4 #VersionName: 1.3.2 '<-----Current Database Version is 2 Upvote 0
I use 2 digit system which adds up to the version code. Example B4X: #VersionCode: 4 #VersionName: 1.3 3 digit if the app has sqlite DB, the last digit being the DBVersion. Example B4X: #VersionCode: 4 #VersionName: 1.3.2 '<-----Current Database Version is 2
A AndroidMadhu Active Member Licensed User Jul 3, 2021 #6 mcqueccu said: #VersionName: 1.3.2 '<-----Current Database Version is 2 Click to expand... Fixed the issue.. Working as expected.... Thanks for your advice. Thanks Upvote 0
mcqueccu said: #VersionName: 1.3.2 '<-----Current Database Version is 2 Click to expand... Fixed the issue.. Working as expected.... Thanks for your advice. Thanks
DavideV Active Member Licensed User Longtime User Jul 4, 2021 #7 AnandGupta said: I use B4X: #VersionCode: 100 #VersionName: 1.00 Click to expand... I use this too Upvote 0