Ένα Service είναι ένα Android component για την εκτέλεση εργασιών χωρίς UI — συνήθως για μακροχρόνιες εργασίες στο background. Υπάρχουν διαφορετικοί τύποι (foreground, background, bound), καθένας κατάλληλος για διαφορετικές ανάγκες, αν και το σύγχρονο Android προτιμά το WorkManager για πολλές περιπτώσεις.
Τι είναι ένα Service
A SERVICE runs operations WITHOUT a UI (not tied to a screen):
→ for work that should continue regardless of UI (or independent of any activity)
→ declared in the manifest; runs in the app's process (main thread by default — must
move heavy work off it!)
