Em có làm một app notification, em muốn khi tắt app đi nó vẫn chạy ngầm. Em có sử dụng StartForegroundService nó đã chạy, nhưng được tầm 10s thì nó báo lỗi “Context.startForegroundService() did not then call Service.startForeground()” là sao ạ. Em code bằng xamarin. Em google mãi rồi nhưng vẫn không khắc phục được. Bác nào chỉ giúp em với ạ. Em cảm ơn. Em code trong hàm MainActivity như này ạ:
public void startforeSevice()
{
Intent it = new Intent(this, typeof(serviceclass));
StartForegroundService(it);
}
protected override void OnCreate(Bundle savedInstanceState)
{
TabLayoutResource = Resource.Layout.Tabbar;
ToolbarResource = Resource.Layout.Toolbar;
base.OnCreate(savedInstanceState);
startforeSevice();
Xamarin.Essentials.Platform.Init(this, savedInstanceState);
global::Xamarin.Forms.Forms.Init(this, savedInstanceState);
LoadApplication(new App());
}