mirror of
https://github.com/bitwarden/mobile
synced 2025-12-23 03:33:59 +00:00
15 lines
488 B
C#
15 lines
488 B
C#
using System;
|
|
using Bit.App.Abstractions;
|
|
using Foundation;
|
|
|
|
namespace Bit.iOS.Core.Services
|
|
{
|
|
public class AppInfoService : IAppInfoService
|
|
{
|
|
public string Build => NSBundle.MainBundle.InfoDictionary["CFBundleVersion"].ToString();
|
|
public string Version => NSBundle.MainBundle.InfoDictionary["CFBundleShortVersionString"].ToString();
|
|
public bool AutofillAccessibilityServiceEnabled => false;
|
|
public bool AutofillServiceEnabled => false;
|
|
}
|
|
}
|