mirror of
https://github.com/bitwarden/mobile
synced 2025-12-21 18:53:29 +00:00
app missing ios extension services
This commit is contained in:
14
src/iOS.Core/Services/AppInfoService.cs
Normal file
14
src/iOS.Core/Services/AppInfoService.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
@@ -86,6 +86,7 @@
|
||||
<Compile Include="Controllers\ExtendedUIViewController.cs" />
|
||||
<Compile Include="HockeyAppCrashManagerDelegate.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="Services\AppInfoService.cs" />
|
||||
<Compile Include="Services\NoopDeviceActionService.cs" />
|
||||
<Compile Include="Services\DeviceInfoService.cs" />
|
||||
<Compile Include="Services\KeyChainStorageService.cs" />
|
||||
|
||||
Reference in New Issue
Block a user