You have released multiple versions, but haven't touched the versioncode and versionname in ./app/build.gradle. At least increasing the integer in versioncode is mandatory for Android, since it get's used to compare versions (e.g. to check if an update is needed or available). Also it would be a good idea to match git tags/releases with the versionname.
You have released multiple versions, but haven't touched the versioncode and versionname in
./app/build.gradle
. At least increasing the integer in versioncode is mandatory for Android, since it get's used to compare versions (e.g. to check if an update is needed or available). Also it would be a good idea to match git tags/releases with the versionname.More information about versioning Android apps is available at https://developer.android.com/tools/publishing/versioning.html .