Hello!
I have a problem with Support SDK for Android. I added tags to RequestActivity like this:
val requestActivityConfig: Configuration =
RequestActivity.builder()
.withTags(tags)
.config()
HelpCenterActivity.builder().show(context, requestActivityConfig)
and it works well, but if a user navigates to RequestActivity page from "My tickets" page (RequestListActivity) tags didn't add. I think, it is because i didn't add tags to RequestListActivity:
RequestListActivity.builder().show(context, requestActivityConfig)
but i don't want to show this page at the start, i want to show HelpCenterActivity and let to users navigate to RequestListActivity from HelpCenterActivity. Isn't it possible to apply tags for RequestListActivity without using "show" method (because it will be shown from HelpCenterActivity) ? Any idea how to solve this?
(maybe "intent", but i do not know how to use it, to solve this problem).
(seems like iOS SDK doesn't have this problem).