not kotlin but kotlin colored
Does anyone know how to change the order that versionNameSuffixes get appended? currently my versionName is "1.0.0" for example, and then if it's a debug build it appends (versionCode) Debug, and then if it's stage from my productFlavors it appends Stage. But the way it's being built is 1.0.0 Stage (110) Debug. and I'd rather it be 1.0.0 (110) Debug Stage
not kotlin but kotlin colored 4