Waqas Waheed
Waqas Waheed
Hi I’m using the standalone redirect component.
Yes I followed every step in the documentation and I don’t think returnUrl is issue because IOS side implementation is working fine just android is showing problems.
My activity is a "singleTask" activity so according to documentation data should be handled in onNewIntent method but for the safe side I'm handling in it both methods.
Here's my activity code, if that helps: MainActivity.kt ```kotlin @FlowPreview @ExperimentalCoroutinesApi class MainActivity : NavActivity(), GoogleMapProvider { private val viewBinding: ActivityMainBinding by dataBinding(R.layout.activity_main) private val homeViewModel: HomeViewModel by viewModels {...