1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-10 21:33:36 +00:00

Conversion of HockeyApp to AppCenter for crash reporting (#810)

* Conversion of HockeyApp to AppCenter for crash reporting

* Corrected older-style nuget package definition
This commit is contained in:
Matt Portune
2020-04-02 09:02:38 -04:00
committed by GitHub
parent 915e8cf072
commit 4d3d8b643a
15 changed files with 138 additions and 142 deletions

View File

@@ -9,7 +9,6 @@ using Bit.Core.Services;
using Bit.Core.Utilities;
using Bit.iOS.Core.Services;
using Foundation;
using HockeyApp.iOS;
using UIKit;
namespace Bit.iOS.Core.Utilities
@@ -22,12 +21,12 @@ namespace Bit.iOS.Core.Utilities
public static string AppGroupId = "group.com.8bit.bitwarden";
public static string AccessGroup = "LTZ2PFU5D6.com.8bit.bitwarden";
public static void RegisterHockeyApp()
public static void RegisterAppCenter()
{
var crashManagerDelegate = new HockeyAppCrashManagerDelegate(
var appCenterHelper = new AppCenterHelper(
ServiceContainer.Resolve<IAppIdService>("appIdService"),
ServiceContainer.Resolve<IUserService>("userService"));
var task = crashManagerDelegate.InitAsync();
var appCenterTask = appCenterHelper.InitAsync();
}
public static void RegisterLocalServices()