<Android - LiveData observe not getting update fro...
# stackoverflow
u
Android - LiveData observe not getting update from AndroidViewModel in active Activity I do see quite some questions about this issue but most of them are related to Fragment. I am calling it inside the activity but still not observing any changes. MainActivity.kt: class MainActivity : AppCompatActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.activity_main) val mainViewModel = ViewModelProvider( this,...