Xamversion Fastlane Plugin
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.