Firstly, I'm trying to do an update over an old apk on play store, And I'm curious if the generated signed apk with the default name "app-release" Should i rename that to the same name as my new apk com.site.radio?
What I mean..
I have generated a signed apk but it's named "app-release" by default, I'd like to change that name to the same name as my package: com.site.radio
I've tried putting this in the build.gradel:
project.ext.set("archivesBaseName", "com.site.radio");
But when I generate a new signed apk it's name becomes:
com.site.radio-release
How do you remove the -release part?
Thanks in advance