Is it possible to use Jetpack Compose Composable in the Capacitor Plugin (Android)?

  1. Capacitor calls method on native plugin
  2. I want to show Compose (style with Material3 Theme)

@PluginMethod
fun doSth(call: PluginCall) {
// How to display a custom Composable?
call.resolve()
}