我们的TWA使用SHA256指纹签名并发布到应用商店。数字资产链接中使用相同的密钥,并且验证 TEST 成功。但是,该应用程序仍会打开并显示地址栏。
我使用以下命令验证了我们正在运行发布签名版本(并且在应用商店中发布相同(,并且它确实提到APK处于发布模式。
命令:jarsigner -verify -verbose -certs your_apk.apk
(命令参考:https://medium.com/@chintanrathod/verify-if-apk-is-signed-with-certificate-or-debug-build-44a729e684ca(
基本代码:https://github.com/GoogleChromeLabs/svgomg-twa
另外,这里是app/build.gradle文件的相关内容。
buildTypes {
release {
minifyEnabled true
debuggable false
}
}
以下是 twaManifest 信息:
def twaManifest = [
applicationId: 'in.xyz.app',
hostName: 'xyz.in', // The domain being opened in the TWA.
launchUrl: '/', // The start path for the TWA. Must be relative to the domain.
name: 'XYZ', // The name shown on the Android Launcher.
themeColor: '#FFCD59', // The color used for the status bar.
backgroundColor: '#ffcc99' // The color used for the splash screen background.
]
我们预计,由于"数字资产链接"有效,并且PWA + TWA配置正确,因此应用必须在没有地址栏的情况下打开,但它没有。
请指教。
https://xyz.in 重定向到 https://www.xyz.in。第一个在应用程序中列出要验证,第二个不是。尝试将hostName
更改为 www.xyz.in。