1

I want to open app directly without giving propmt open with browser or open with app.

I followed some links on stackoverflow did exactly what they did but still no luck.

Please help to get it fixed.

<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>
Phantômaxx
  • 37,901
  • 21
  • 84
  • 115
hiashutoshsingh
  • 980
  • 2
  • 14
  • 41
  • Does this page answer your question? https://developer.android.com/training/app-links – Jan Held Feb 13 '20 at 10:32
  • @JanHeld yeah i checked this doc...but this error is coming "digital assest links file not found at {url}"......but i have placed the assestslink.json file in root folder of my domain – hiashutoshsingh Feb 14 '20 at 11:31

0 Answers0