No commit activity in last 3 years
No release in over 3 years
Read and manipulate Android and iOS app versions.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

 Project Readme

Xamversion Fastlane Plugin

fastlane Plugin Badge Gem Version

Getting Started

This project is a fastlane plugin. To get started with fastlane-plugin-xamversion, add it to your project by running:

fastlane add_plugin xamversion

About xamversion

Fastlane plugin to easily read and manipulate Xamarin Android and iOS app version and build numbers.

Example

Check out the example Fastfile to see how to use this plugin. Try it by cloning the repo, running fastlane install_plugins and bundle exec fastlane test.

platform :ios do
  desc "Just print the version and build"
  lane :example do
    xamversion
  end
  
  desc "Set version and/or build explicitly"
  lane :example do
    xamversion(
      version: "1.2.0",
      build:   20
    )
  end
  
  desc "Interactively update the version following SemVer"
  lane :example do
    xamversion(bump: true)
  end
  
  desc "If Info.plist or AndroidManifest.xml cannot be found"
  lane :example do
    xamversion(
      plist_path: "path/to/Info.plist",
      manifest_path: "path/to/AndroidManifest.xml"
    )
  end
end

Issues and Feedback

For any other issues and feedback about this plugin, please submit it to this repository.

Troubleshooting

If you have trouble using plugins, check out the Plugins Troubleshooting guide.

Using fastlane Plugins

For more information about how the fastlane plugin system works, check out the Plugins documentation.

About fastlane

fastlane is the easiest way to automate beta deployments and releases for your iOS and Android apps. To learn more, check out fastlane.tools.