我认为配置了 和在域名服务器上部署了证书后应该就能跳转才对。不知道是哪里错了。。
还有就是有没有比较好的 Android 开发社区,大佬们推荐一下!
下面是我的代码
AndroidManifest.xml
debug 证书地址: https://tw.eekda.com/.well-known/assetlinks.json
这是我跳转 url 的 Button 代码
openApp(){
const isAndroid = /Android/i.test(navigator.userAgent);
if (isAndroid) {
const uurl = `https://tw.eekda.com/open`;
// 尝试打开 APP 或者跳转到应用商店
window.yin = uurl;
} else {
// 如果是其他平台(如 iOS )
alert("只支持 android")
}
},