Android deep link "wc:" scheme

Viewed 728

I am trying to recognize the following as a deep link in android

wc:1a15e8b5-8470-47fa-985f-cf11b4c89067@1?bridge=https%3A%2F%2Fbridge.walletconnect.org&key=f92fb2ed74d628a6a286e416e4df2fbfa88d58e6826007c021b9f5920567cdd5

I have set up my AndroidManifest to be as follows:

        <activity
        android:name=".MainActivity"
        android:configChanges="orientation|screenSize|screenLayout|layoutDirection|keyboard|keyboardHidden"
        android:launchMode="singleTask"
        android:theme="@style/AppTheme.Launcher"
        android:windowSoftInputMode="stateHidden|adjustPan|adjustResize">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>

        
        <intent-filter android:label="@string/app_name">
            <action android:name="android.intent.action.VIEW" />

            <category android:name="android.intent.category.DEFAULT" />
            <category android:name="android.intent.category.BROWSABLE" />

            <data android:scheme="wc" />
        </intent-filter>
    </activity>

However when I try to scan the relevant qr with the camera app, nothing happens. What am I missing?

0 Answers
Related