Where in the application you need to register the version of the application? in values/strings
? in values/dimens
?
1 answer
build.gradle
are fields in build.gradle
- version_name
version_code
.version_name
is responsible for a user-readable version, for example 1.0.3
version_code
is responsible for the version number , and is an int
type number. When you upload an update to Google Play, this number should be higher than in the previous version.
|