`staticAmbientOf` as well
# compose
o
staticAmbientOf
as well
what about setContent now returns
Cannot access 'setContent': it is internal in 'androidx.compose.ui.platform'
j
These migration questions are answered in the release notes: https://developer.android.com/jetpack/androidx/releases/compose-ui#1.0.0-beta01
In particular:
ComponentActivity.setContent()
 was removed from compose:ui. Use the one from 
androidx.activity:activity-compose:1.3.0-alpha01
viewModel()
 and 
LocalViewModelStoreOwner
 were removed from compose:ui. Use the ones from 
androidx.lifecycle:lifecycle-viewmodel-compose:1.0.0-alpha01
There is also a note in the release notes indicating that you should upgrade to
androidx.activity:activity-compose:1.3.0-alpha02
.
o
yes