Как открыть приложение напрямую из deeplink, если приложение уже установлено? - PullRequest
0 голосов
/ 13 февраля 2020

Я хочу открыть приложение напрямую, не открывая propmt с помощью браузера или открыть с приложением.

Я перешел по некоторым ссылкам на stackoverflow, сделал именно то, что сделал, но все же не повезло.

Пожалуйста, помогите чтобы исправить это.

<activity
            android:name="com.zappfresh.android.Activity.login.SplashActivity"
            android:label="Zappfresh"
            android:launchMode="singleTask"
            android:screenOrientation="portrait">
            <intent-filter android:autoVerify="true">
                <action android:name="android.intent.action.MAIN" />

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

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
            <intent-filter android:autoVerify="true">
                <action android:name="android.intent.action.VIEW" />

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

                <data
                    android:host="zappfresh.onelink.me"
                    android:pathPrefix="/T0HX"
                    android:scheme="https" />
            </intent-filter>
        </activity>
...