I have two activities in my Android app that share the same host but have different path configurations for deep links:
Activity A: Should handle deep links that contain only the host (e.g., https://example.com).
Activity B: Should handle deep links that include a specific path prefix (e.g., https://example.com/pathprefix).
Currently, both activities are being triggered because they share the same host and scheme. How can I configure my app so that:
Activity A opens when the deep link contains the host but should not contain the path prefix mentioned in Activity B.
Activity B opens when the deep link contains the path prefix.