Hey Android developers ๐, Most of todayโs developers are adopting MVVM architecture primarily for Android app development ๐จโ๐ป. While adopting these things, anyone can do certain mistakes (which is absolutely fine). In this article, we are gonna see how to follow good practices with ViewModels in Android and how some decisions can make us helpless. Okay, letโs start ๐โโ๏ธ.
๐ Overview
Letโs understand the concept of ViewModel and whatโs its purpose.
๐คทโโ๏ธ Whatโs ViewModel?
In MVVM architecture, it suggests separating the data presentation logic (Views or UI) from the core business logic part of the application. ViewModel is such a component whose work is to execute core business and prepare required data for UI. So that ViewModel can be used by Activities/Fragments.
- In Android, ViewModel is a part of Androidโs Architecture component. UI shouldnโt hold the logic, have to move it to ViewModel.
- UI will subscribe to any state changes in ViewModel and will update UI accordingly (reactive approach). ViewModel is lifecycle aware and can survive changes.
- ๐ด ViewModel should not hold Android framework references (Not Mandatory). For e.g. Activity, Context, View, Drawable, etc.
๐ค Why ViewModel shouldnโt hold framework references?
As we discussed earlier that ViewModel is lifecycle aware but View is not. Many developers also pass the Activity/View references to the ViewModel which is the most common case that developers make the ViewModel framework aware. But ViewModel should not be treated like this. If the View reference remains in ViewModel and it gets destroyed then ViewModel still hold that reference which may lead to the memory leaks ๐ฎ. Thus, the purpose for which ViewModel came into the picture is broken ๐.
๐ฅฝ Continueโฆ
As you can see in the title, Iโve mentioned โDonโt let ViewModel know about FRAMEWORK LEVEL DEPENDENCIESโ. So letโs discuss whatโs exactly Framework Level Dependencies.
So as you might be aware of AndroidViewModel and have used already for some rare cases.
Note:
AndroidViewModelis aViewModelthat has Application Context awareness.
Now when we are introducing Context in ViewModel, the last point ๐ด mentioned above is breaking. Why? Because Context is a part of Androidโs framework. Then it decreases testability, modularity and maintainability of the codebase. No matter our application is small scale or large scale but having tests is always good because it acts as a safeguard as it gets expanding. That thing is breaking by using AndroidViewModel. Because it doesnโt let us write unit tests for that part of code (integration testing is possible only) โน. After all, everyone knows how tricky it is to control memory leaks from the usage of Context if something goes wrong.
Why do we need AndroidViewModel? ๐ค
For handling framework supported tasks in ViewModel sometimes we may need it. Example: File management, storage, WorkManager APIs, etc. But itโs completely up to us to implement business without using it.
Letโs see the example implementation to understand the problemsโฆ
๐จโ๐ป Example Implementation
Okay, so we have to develop a simple android app that stores a user session and performs simple login/logout actions. Now itโs obvious that weโll need to use SharedPreferences. So letโs see how we can implement it.
โ Example using AndroidViewModel way
Iโm skipping UI code and will be only showing the ViewModel code. So letโs create UserViewModel. Need to inherit AndroidViewModel and create SharedPreferences for storing a user session. Also, letโs implement business for setting a user session.
@HiltViewModel
class UserViewModel @Inject constructor(
application: Application,
private val userRepository: UserRepository
) : AndroidViewModel(application) {
/**
* A [SharedPreferences] for storing user preferences.
*/
private val userPreferences = application.getSharedPreferences(
UserPreferences.NAME,
Context.MODE_PRIVATE
)
// ...
// OTHER CODE HERE
// ...
/**
* Creates a new user with [name] and [email] and sets active session of that created user.
*/
fun setUserSession(name: String, email: String) {
viewModelScope.launch {
val user = userRepository.add(name, email)
withContext(Dispatchers.IO) {
userPreferences.edit {
putInt(UserPreferences.Keys.ID, user.id)
putString(UserPreferences.Keys.NAME, user.name)
putString(UserPreferences.Keys.EMAIL, user.email)
}
}
// Update LiveData/StateFlow/Rx or any other stream
}
}
/**
* Object holding user preference key details
*/
private object UserPreferences {
const val NAME = "user_pref"
object Keys {
const val ID = "user_id"
const val NAME = "user_name"
const val EMAIL = "user_email"
}
}
}
Have you seen this code ๐? Letโs discuss key issues with this.
๐ Disadvantages of this approach
- The
ViewModelis not unit-testable. - If we need to use sessions in letโs say another
ViewModelweโll again need to copy the same code there. Itโll lead to code duplication ๐ฏโโ๏ธ. - Hard to maintain if something changes.
- Lost single-responsibility principle since ViewModel does everything.
Isnโt it painful? ๐ค Letโs see how can we make it better ๐ฆธโโ๏ธ.
โ Example using ViewModel way
So after coming from the previous approach, we need a solution that will be modular, easy to maintain, easy to plug whenever needed. So we can extract the logic of session management into a separate class ๐.
Letโs create a SessionManager. Create and implement operations/business logic of session management.
@Singleton
interface SessionManager {
suspend fun getCurrentUser(): User?
suspend fun setUserSession(user: User)
suspend fun clear()
}
@Singleton
class DefaultSessionManager @Inject constructor(
// Provided by Dagger-Hilt injection module
@UserPreferences private val userPreferences: SharedPreferences
) : SessionManager {
override suspend fun setUserSession(user: User) = withContext(Dispatchers.IO) {
userPreferences.edit {
putInt(Keys.ID, user.id)
putString(Keys.NAME, user.name)
putString(Keys.EMAIL, user.email)
}
}
// ...
// OTHER FUNCTION IMPLEMENTATIONS
// ...
/**
* Object holding user preference key details
*/
object UserPreferencesDetails {
const val NAME = "user_pref"
object Keys {
const val ID = "user_id"
const val NAME = "user_name"
const val EMAIL = "user_email"
}
}
}
Now, itโs time to refactor and clean up UserViewModel ๐งน.
@HiltViewModel
class UserViewModel @Inject constructor(
private val sessionManager: SessionManager,
private val userRepository: UserRepository,
@DefaultDispatcher private val defaultDispatcher: CoroutineDispatcher // Injected by Hilt module. Used in testing
) : ViewModel() {
// ...
// OTHER CODE HERE
// ...
/**
* Creates a new user with [name] and [email] and sets active session of that created user.
*/
fun setUserSession(name: String, email: String) {
viewModelScope.launch(defaultDispatcher) {
val user = userRepository.add(name, email)
sessionManager.setUserSession(user)
// Update LiveData/StateFlow/Rx or any other stream
}
}
}
๐ Can you see the difference? Now it has inherited core ViewModel. Too much code is now removed.
๐ Advantages of this approach
- Only
SessionManagerand its implementation will be responsible for managing user session related business. Thus, we achieved the Single-responsibility principle from SOLID. - ViewModel now only care about executing required business and updating UI state accordingly.
SessionManageris handling session management. - Now
UserViewModelis referencing interfaceSessionManagernot a class so it (ViewModel) doesnโt care or know whatโs happening under the hood. It means, now ViewModel doesnโt have knowledge of Framework dependencies ๐. - If any other
ViewModelor part of code needs to handle the session management then they just get an instance ofSessionManagerand thatโs all! - Easy to maintain.
- Testable.
๐ Disadvantages of this approach
๐ Obviously NOT ๐ .
๐งช Testing
After using the best approach, UserViewModel is ready for testing. Letโs write code to test the code ๐.

Cool! Thatโs all. I hope this article helped to understand the pitfalls of AndroidViewModel.
If you need to have a look at both approaches, refer to this GitHub Repository. Here youโll find both approaches. Also, if you want to take a look at just diff only โโ then refer to this Pull Request which is a change from the first approach to the second.
Thank you! ๐
โSharing is caringโ
