1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 18:47:27 +08:00
osu-lazer/osu.Android/OsuGameAndroid.cs

36 lines
1.2 KiB
C#
Raw Normal View History

2019-03-17 22:39:07 +08:00
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using Android.App;
using osu.Game;
2019-09-24 17:12:04 +08:00
using osu.Game.Updater;
2019-03-17 22:39:07 +08:00
namespace osu.Android
{
public class OsuGameAndroid : OsuGame
{
2019-09-24 16:45:45 +08:00
public override Version AssemblyVersion
{
get
{
2019-09-24 17:12:04 +08:00
var packageInfo = Application.Context.ApplicationContext.PackageManager.GetPackageInfo(Application.Context.ApplicationContext.PackageName, 0);
2019-09-24 16:45:45 +08:00
try
{
// todo: needs checking before play store redeploy.
string versionName = packageInfo.VersionName;
2019-09-24 16:45:45 +08:00
// 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)));
}
catch
{
}
2019-09-24 17:12:04 +08:00
return new Version(packageInfo.VersionName);
2019-09-24 16:45:45 +08:00
}
}
2019-09-24 17:12:04 +08:00
2020-03-05 12:34:04 +08:00
protected override UpdateManager CreateUpdateManager() => new SimpleUpdateManager();
2019-03-17 22:39:07 +08:00
}
2019-09-24 16:45:45 +08:00
}