fastlane-plugin-versioning_android
fastlane-plugin-versioning_android copied to clipboard
android_set_version_name misses single colon in version
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
You can get around it by wrapping it in single quotes:
android_set_version_name(
version_name: "\'1.0.0\'"
)