fastlane-plugin-versioning_android icon indicating copy to clipboard operation
fastlane-plugin-versioning_android copied to clipboard

android_set_version_name misses single colon in version

Open jplorier opened this issue 4 years ago • 1 comments

I've tried in many ways to pass the version name to include the single colon as the syntax demands, but it always includes the version name without the colons

jplorier avatar Jun 28 '21 15:06 jplorier

You can get around it by wrapping it in single quotes:

	  android_set_version_name(
		  version_name: "\'1.0.0\'"
	  )

joe-yeomans avatar Aug 31 '22 20:08 joe-yeomans