What's the different between
adb shell am start \
-a android.intent.action.VIEW \
-d https://www.airbnb.co.uk/rooms/48033927
and
adb shell am start \
-a android.intent.action.VIEW \
-c android.intent.category.BROWSABLE \
-d https://www.airbnb.co.uk/rooms/48033927
Note: I know the use of -a android.intent.action.VIEW
and without as per this How can I make ADB behave like real deeplink?, but can't find what's the different between using -c android.intent.category.BROWSABLE
and not