Android 应用程序链接验证不起作用

Android 应用程序链接验证不起作用,android,deep-linking,applinks,Android,Deep Linking,Applinks,我成功地实现了深度链接,但现在我也想实现应用程序链接,但我没有得到想要的结果 雄激素单 某处可能有打字错误https://ex.com./.well-known/assetlinks.json不,没有,否则将无法访问我的AssetLink文件。不幸的是,日志中包含此“输入错误”。另外,确保您的文件不是通过HTTP重定向提供的。最后,检查Android Studio(应用程序链接助手)的应用程序链接有人吗?你知道为什么会这样吗?我也有同样的问题。没有打字错误。当我查看页面时,json就在那里。但是

我成功地实现了
深度链接
,但现在我也想实现
应用程序链接
,但我没有得到想要的结果

雄激素单


某处可能有打字错误
https://ex.com./.well-known/assetlinks.json
不,没有,否则将无法访问我的AssetLink文件。不幸的是,日志中包含此“输入错误”。另外,确保您的文件不是通过HTTP重定向提供的。最后,检查Android Studio(应用程序链接助手)的应用程序链接有人吗?你知道为什么会这样吗?我也有同样的问题。没有打字错误。当我查看页面时,json就在那里。但是当我通过谷歌测试时,它不在那里。。。
<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="http"
                android:host="*.ex.com"
                android:pathPrefix="/vvv" />
            <data android:scheme="https"
                android:host="ex.com"
                android:pathPrefix="/vvv" />
        </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="http"
                android:host="*.ex.com"
                android:pathPrefix="/ttt" />
            <data android:scheme="https"
                android:host="ex.com"
                android:pathPrefix="/ttt" />
</intent-filter>