expo universal deep linking for android

this is my app.json file …

{

"expo": {
    "name": "Sabi",
    "slug": "Sabi",
    "version": "1.0.1633985632494",
    "orientation": "portrait",
    "icon": "./assets/images/app-icon.png",
    "scheme": "https",
    "userInterfaceStyle": "automatic",
    "splash": {
        "image": "./assets/images/sabi.png",
        "resizeMode": "cover"
    },
    "updates": {
        "enabled": true,
        "fallbackToCacheTimeout": 6000,
        "checkAutomatically": "ON_ERROR_RECOVERY"
    },
    "assetBundlePatterns": ["**/*"],
    "ios": {
        "supportsTablet": false,
        "bundleIdentifier": "com.spaceso2o.sabi",
        "infoPlist": {
            "NSPhotoLibraryUsageDescription": "This app requires a photo for uploading a means of identification.",
            "UIRequiredDeviceCapabilities":["telephony","arm64"]
        }
    },
    "android": {
        "versionCode": 17,
        "adaptiveIcon": {
            "foregroundImage": "./assets/images/app-icon2.png",
            "backgroundColor": "#04045B"
        },
        "package": "com.spaceso2o.superapp",
         "intentFilters": [
             {
                 "action": "VIEW",
                 "autoVerify": true,
                 "data": [
                     {
                         "scheme": "https",
                         "host": "*spaceso2o.com",
                         "pathPrefix": "/actions/merchbuy/shop"
                     }
                 ],
                 "category": ["BROWSABLE", "DEFAULT"]
             }
         ]
    },
    "web": {
        "favicon": "./assets/images/favicon.png"
    },
    "description": ""
},
"mixpanel": "55ff66ee29a380d2b024fa33607b33da"

}

as you can see the android is setup properly and it works if i run
npx uri-scheme open exp://172.20.10.2:19000/–/actions/merchbuy/shop/5f297b6b14d53e707aaeef0c --andriod . while the expo server is running

but running :
npx uri-scheme open Spaces --android dosent work , but directs me to the web application