Skip to content

Latest commit

 

History

History
64 lines (48 loc) · 1.82 KB

OVERVIEW.md

File metadata and controls

64 lines (48 loc) · 1.82 KB

Mobile Versioning

Quick overview

The tasks available in this extension are:

  • ExtractVersionFromTag
  • UpdateiOSVersionInfoPlist
  • UpdateAndroidVersionManifest
  • UpdateAndroidVersionGradle

Check the Github repository for more informations!

Basic usage

Dynamically get the version from the Git tag:

- task: ExtractVersionFromTag@1
  inputs:
    projectFolderPath: '$(Build.SourcesDirectory)' # Optional. Default is: $(Build.SourcesDirectory)

You will then have access to 4 variables for the following tasks:

  • MAJOR
  • MINOR
  • PATCH
  • PRE_RELEASE
  • NUMBER_OF_COMMITS
  • NUMBER_OF_COMMITS_SINCE_TAG

Then depending on your need add one of these following tasks:

For iOS to update the Info.plist:

- task: UpdateiOSVersionInfoPlist@1
  inputs:
    infoPlistPath: 'your_project/Info.plist'
    bundleShortVersionString: '$(MAJOR).$(MINOR).$(PATCH)-$(PRE_RELEASE)' # Optional. Default is: $(MAJOR).$(MINOR).$(PATCH)
    bundleVersion: '$(NUMBER_OF_COMMITS)' # Optional. Default is: $(NUMBER_OF_COMMITS)

For Android:

If you need to update the AndroidManifest.xml:

- task: UpdateAndroidVersionManifest@1
  inputs:
    androidManifestPath: 'your_project/AndroidManifest.xml'
    versionName: '$(MAJOR).$(MINOR).$(PATCH)-$(PRE_RELEASE)' # Optional. Default is: $(MAJOR).$(MINOR).$(PATCH)
    versionCode: '$(NUMBER_OF_COMMITS)' # Optional. Default is: $(NUMBER_OF_COMMITS)

If you need to update the build.gradle inside the app folder:

- task: UpdateAndroidVersionGradle@1
  inputs:
    buildGradlePath: 'your_project/app/build.gradle'
    versionName: '$(MAJOR).$(MINOR).$(PATCH)-$(PRE_RELEASE)' # Optional. Default is: $(MAJOR).$(MINOR).$(PATCH)
    versionCode: '$(NUMBER_OF_COMMITS)' # Optional. Default is: $(NUMBER_OF_COMMITS)