Код: Выделить всё
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.core:core-ktx:1.2.0'
// ViewModel
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.2.0"
// Annotation processor
kapt "androidx.lifecycle:lifecycle-compiler:2.2.0"
Код: Выделить всё
class MyViewModel: ViewModel() {
val greeting = "Hello World"
}
Код: Выделить всё
val model by viewModels()
Подробнее здесь: https://stackoverflow.com/questions/608 ... -reference
Мобильная версия