Service არის Android კომპონენტი ოპერაციების შესასრულებლად UI-ის გარეშე — ჩვეულებრივ უფრო ხანგრძლივი მუშაობა ფონზე. არსებობს სხვადსხვა ტიპი (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!)
