Android Question Library Version Number

Robert Valentino

Well-Known Member
Licensed User
Longtime User
When I do a Compile To Library to make my own libraries, how do I change the Library Version Number.

Tried changing the #VersionCode but that does not seem to work

BobVal
 

DonManfred

Expert
Licensed User
Longtime User
Add this code to the project where you compile it as library.
Put it in main.

B4X:
    #LibraryVersion: 0.10
    #LibraryAuthor: Someone <[email protected]>
    #LibraryName: MyGreatLibrary
 
Upvote 0
Top