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