Android Architecture Components (Jetpack-এর অংশ) হল লাইব্রেরি যা শক্তিশালী, রক্ষণাবেক্ষণযোগ্য অ্যাপ তৈরিতে সাহায্য করে — যার মধ্যে রয়েছে ViewModel (lifecycle-aware স্টেট), LiveData/StateFlow (observable ডেটা), এবং Room (একটি ডেটাবেস abstraction)। তারা সুপারিশকৃত architecture প্যাটার্ন সমর্থন করে।
ViewModel — lifecycle-aware স্টেট হোল্ডার
VIEWMODEL holds UI-related state and logic, SURVIVING configuration changes:
→ state stored in a ViewModel SURVIVES screen rotation (the activity recreates, but the
ViewModel persists) → solves the lost-state-on-rotation problem
→ separates UI logic from the Activity/Fragment (the View just observes/displays)
