Hi i am updating version code and version number for the release build from gradle using something like this.
def versionMajor = 6
def versionMinor = 4
def versionPatch = 3
versionCode versionMajor * 10000 + versionMinor * 100 + versionPatch
versionName "${versionMajor}.${versionMinor}.${versionPatch}"
Now i want to know if there is something with which i can update my gradle version to the latest too. I have been hitting internet for quite a few hours for this but not able to find anything.