mirror of
https://github.com/bitwarden/android.git
synced 2024-12-28 20:08:43 +03:00
2791d4b8ec
* WIP Fixes for iOS push notifications * WIP Fixes for iOS push notifications, fix missed implementation on android * Fix some issues on the push notifications, changed to Debug Console.WriteLine, and added update on entitlements on the build.yml
12 lines
269 B
C#
12 lines
269 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace Bit.App.Abstractions
|
|
{
|
|
public interface IPushNotificationService
|
|
{
|
|
bool IsRegisteredForPush { get; }
|
|
Task<string> GetTokenAsync();
|
|
Task RegisterAsync();
|
|
Task UnregisterAsync();
|
|
}
|
|
}
|