mirror of
https://github.com/bitwarden/android.git
synced 2026-05-08 21:10:40 -05:00
15 lines
507 B
C#
15 lines
507 B
C#
using Bit.App.Abstractions;
|
|
using AndroidApp = Android.App.Application;
|
|
|
|
namespace Bit.Android.Services
|
|
{
|
|
public class AppInfoService : IAppInfoService
|
|
{
|
|
public string Version => AndroidApp.Context.ApplicationContext.PackageManager
|
|
.GetPackageInfo(AndroidApp.Context.PackageName, 0).VersionName;
|
|
|
|
public string Build => AndroidApp.Context.ApplicationContext.PackageManager
|
|
.GetPackageInfo(AndroidApp.Context.PackageName, 0).VersionCode.ToString();
|
|
}
|
|
}
|