appdeeplink Github .well-known folder not identifying
Asked Answered
T

1

16

enter image description hereI am adding app deep linking functionality in my app,i followed as per applink assist,i created .well-known folder in github also but still i am facing digital assets link not found

  [![<meta-data
            android:name="asset_statements"
            android:resource="@string/asset_statements" />
        <activity android:name=".MainActivity">


            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <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:scheme="https"
                    android:host="suresh777.github.io"
                    android:pathPattern="/links" />
            </intent-filter>
        </activity>][1]][1]

enter image description here

Towhaired answered 23/11, 2017 at 13:23 Comment(0)
C
30

You have to create a file named _config.yml in your root folder and the value inside is include: [".well-known"]

Reference: https://github.com/wojtek-kalicinski/wojtek-kalicinski.github.io

Cotswold answered 4/10, 2018 at 11:0 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.