Anyone else getting `java.lang.IllegalStateException: ViewTreeLifecycleOwner not found from DecorVie...
o
Anyone else getting
java.lang.IllegalStateException: ViewTreeLifecycleOwner not found from DecorView@8896299[MainActivity]
after upgrading to beta02?
Copy code
override fun onCreateView(
    inflater: LayoutInflater,
    container: ViewGroup?,
    savedInstanceState: Bundle?
): View = ComposeView(requireContext())
Having only this already causes the exception
a
try updatiing appcomopat to
1.3.0-beta01
o
Yes just read the release note saying that, trying that now
p
@Orhan Tozan did you get it working? I still got an error 😞
o
Yes it works now for me
What is your dependency list?
p
I found the proper dependency. I am using compose in fragment and I was using
Copy code
androidx.fragment:fragment:1.3.0-beta01
Updating to
1.3.1
helped