Kodola Andrii
02/06/2024, 7:42 AMnavController.handleDeeplink
and figured out, that my deeplink with two query arguments separated with &
have been stripped from the second argument. From <http://www.my-site.com/action?h={h}&u={u}|www.my-site.com/action?h={h}&u={u}>
only `www.my-site.com/action?h={h}`left. When I changed, for testing, the separator to ,
deeplink started to work as expected. Is that an expected behaviour? I believe, that wasn’t the case when we were using Navigation component, and handled deeplinks manually, they came in full.ephemient
02/06/2024, 11:07 AMadb shell am start
or similar, &
will get interpreted by the shell as a background jobKodola Andrii
02/06/2024, 11:49 AM