ProAndroidDev

The latest posts from Android Professionals and Google Developer Experts.

Follow publication

Mastering Android ViewModels: Essential Dos and Don’ts Part 3 🛠️3️⃣

Reza
ProAndroidDev
Published in
5 min readApr 22, 2024

Part 3

Key Discussion Points for This Series

Let’s get started!

#4-Try not to import Android dependencies in the ViewModels:

1. Separation of Concerns

but what If I need to emit some sort of string from my viewmodels as part of my state?

2. Testability

3. Portability

But what about LiveData and Transformers?! 🤔

# 5-Not injecting dependencies Lazily in constructors:

When to Use Lazy Initialization

#Case Study:

@HiltViewModel
class BookViewModel @Inject constructor(
@IoDispatcher private val ioDispatcher: CoroutineDispatcher,
private val bookmarkUseCase: dagger.Lazy<BookmarkUsecase>,

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

Published in ProAndroidDev

The latest posts from Android Professionals and Google Developer Experts.