android 使用Unilink进行深度链接时出现问题-Flutter

bvn4nwqk  于 2022-11-20  发布在  Android
关注(0)|答案(1)|浏览(223)

我下面的链接,以实现在我的Flutter应用程序deeplinking:
Uni Link
我已经做了一切一样的建议有。下面是我的Android清单文件内的意图过滤器:

<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" />
            <!-- Accepts URIs that begin with https://YOUR_HOST -->
            <data
                android:scheme="https"
                android:host="unilinks.example.com" />
        </intent-filter>

应用程序成功启动,但当我在我的设备浏览器中编写URL为"https://unilinks.example.com"时,它应该打开已安装的应用程序,但它只是显示**“无法访问此网站”**!
可能是什么问题?提前感谢。

htzpubme

htzpubme1#

解决了它的真棒Firebase动态链接:
上传我的youtube视频很快,所以直到比照顾,你可以检查Firebase动态链接。相信我,它的工作。

相关问题