I'm using Tauri 2 for an Android app and need to access Intent extras (e.g., a URL or config string) that are passed to the app. Is there a built-in way to retrieve these extras directly in Rust? Or is the recommended approach still to handle them in MainActivity (Kotlin)? Additionally, is there any more convenient or recommended approach to passing parameters into the Tauri app when it’s launched from a custom launcher (other than relying on Android intent extras)?
Thank you!