Browse Source

BootBroadcastReceiver class implemented

master
Kaustav Chaudhuri 1 year ago
parent
commit
28e94c4a4c
1 changed files with 39 additions and 0 deletions
  1. +39
    -0
      GMCabsDriverAssistantSolution/Platforms/Android/BootBroadcastReceiver.cs

+ 39
- 0
GMCabsDriverAssistantSolution/Platforms/Android/BootBroadcastReceiver.cs View File

@ -0,0 +1,39 @@
using Android.App;
using Android.Content;
using GMCabsDriverAssistantSolution.Platforms.Android.Services;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static Java.Util.Jar.Attributes;
namespace GMCabsDriverAssistantSolution.Platforms.Android
{
[BroadcastReceiver(Name = "au.com.gmcabs.driverassistant.app.BootBroadcastReceiver", Enabled = true, Exported = true, DirectBootAware = true)]
[IntentFilter(new[] { Intent.ActionBootCompleted })]
public class BootBroadcastReceiver : BroadcastReceiver
{
public override void OnReceive(Context context, Intent intent)
{
string isForeground = Preferences.Get("isForeground", null);
if (intent.Action.Equals(Intent.ActionBootCompleted))
{
if (isForeground == "YES")
{
var foreGroundServiceIntent = new Intent(global::Android.App.Application.Context, typeof(AndroidLocationService));
if (global::Android.OS.Build.VERSION.SdkInt >= global::Android.OS.BuildVersionCodes.O)
{
global::Android.App.Application.Context.StartForegroundService(intent);
context.StartForegroundService(foreGroundServiceIntent);
}
else
{
global::Android.App.Application.Context.StartService(intent);
context.StartService(foreGroundServiceIntent);
}
}
}
}
}
}

Loading…
Cancel
Save