1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-03 10:10:21 +08:00

Fix android usage of obsoleted VersionCode

This commit is contained in:
Dean Herbert
2020-05-08 15:12:29 +09:00
Unverified
parent 586ddd8200
commit 8b5de7403f
+2 -1
View File
@@ -18,7 +18,8 @@ namespace osu.Android
try
{
string versionName = packageInfo.VersionCode.ToString();
// todo: needs checking before play store redeploy.
string versionName = packageInfo.VersionName;
// undo play store version garbling
return new Version(int.Parse(versionName.Substring(0, 4)), int.Parse(versionName.Substring(4, 4)), int.Parse(versionName.Substring(8, 1)));
}