mirror of
https://github.com/bitwarden/android.git
synced 2026-05-05 23:38:51 -05:00
15 lines
483 B
C#
15 lines
483 B
C#
using System;
|
|
using Bit.App.Abstractions;
|
|
using Foundation;
|
|
|
|
namespace Bit.iOS.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;
|
|
}
|
|
}
|