Then you can not use a Sticky Service.
A Sticky service must show a Notificationicon (as far as i know). The Sticky prevents Android from killing your Service.
Dim n As Notification
Sub Service_Create
n.Initialize
n.Icon = "icon"
n.Vibrate = False
n.Sound = False
n.Light = False
n.OnGoingEvent=True
n.SetInfo("", "",Main)
n.Notify(1)
Service.StartForeground(1, n)
End Sub
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.