Versuche, Deep Linking für meine Android-App hinzuzufügen

Meine App funktioniert einwandfrei, aber wenn ich in meinem Manifest Deep Link-Code hinzufüge, verschwindet mein App-Lunching-Symbol. Dies ist meine Manifest-Datei.

<activity
            android:name=".login.LoginActivity"
            android:screenOrientation="portrait">
            <intent-filter>
                <category android:name="android.intent.category.LAUNCHER" />
                <action android:name="android.intent.action.MAIN" />
                <action android:name="android.intent.action.VIEW" />
                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.BROWSABLE"/>
                <data android:scheme="https" />
                <data android:host="gizbo.ae" />
            </intent-filter>
        </activity> 

Wenn ich diese drei Zeilen für Deep-Linking hinzufüge. Das Startsymbol für das App-Symbol verschwindet vom Gerät.

<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE"/>
<data android:scheme="https" />
<data android:host="gizbo.ae" />

even Ich habe diese beiden Zeilen entfernt

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

wieder das gleiche Problem.

Ich möchte meine App nur in der Google-Suche sichtbar machen und folge diesemVerknüpfun

Antworten auf die Frage(4)

Ihre Antwort auf die Frage