একটি 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!)
