Skip to content

Contains a version-aware library that can be asked for its version.

License

Notifications You must be signed in to change notification settings

remla23-team08/lib

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

lib

This repository contains the required library code that can be used to fetch the current version number of the project.

Usage

// To get the full semver version number of the library.
VersionUtil.getVersion()

// To get the major version number
VersionUtil.getMajorVersion()

// To get the minor version number
VersionUtil.getMinorVersion()

// To get the patch version number
VersionUtil.getPatchVersion()