How to fix the Jetpack Compose Preview Error: “ViewModels creation is not supported”

Sergey Nes
Level Up Coding
Published in
5 min readJan 12, 2023

--

By the way I asked Chat GPT: “How to deal with the Android Studio error: “ViewModels creation is not supported”, in Jetpack Compose Preview”.

I have received the following response:

Currently, ViewModels are not supported in Jetpack Compose Preview. However, you can use other components, such as LiveData, to manage your data and state. You can also create your own custom ViewModel class to handle data loading and operations.

--

--