TWA 浏览器 URL 不隐藏
TWA Browser URL Not hiding
我正在构建一个 TWA,我在网上学习了所有教程,但无法隐藏 chrome 的上部 url 栏 :(
资产 link 文件在这里
https://www.thept.it/.well-known/assetlinks.json
应用位于此处
https://www.thept.it/app
这是 twa 清单
def twaManifest = [
applicationId: 'it.thept',
hostName: 'www.thept.it', // The domain being opened in the TWA.
launchUrl: '/app', // The start path for the TWA. Must be relative to the domain.
name: 'ThePT', // The name shown on the Android Launcher.
themeColor: '#FF6628', // The color used for the status bar.
navigationColor: '#ffffff', // The color used for the navigation bar.
backgroundColor: '#FF6628', // The color used for the splash screen background.
enableNotifications: false, // Set to true to enable notification delegation.
// Add shortcuts for your app here. Every shortcut must include the following fields:
// - name: String that will show up in the shortcut.
// - short_name: Shorter string used if |name| is too long.
// - url: Absolute path of the URL to launch the app with (e.g '/create').
// - icon: Name of the resource in the drawable folder to use as an icon.
shortcuts: [
// Insert shortcuts here, for example:
],
// The duration of fade out animation in milliseconds to be played when removing splash screen.
splashScreenFadeOutDuration: 300
]
错误是
W chromium: [WARNING:digital_asset_links_handler.cc(115)] 语句匹配包失败。
但是根据 Asset Links Tool
包名称是 it.thept.it.thept
你能帮帮我吗?
找到解决方案,在 build.gradle REMOVE
//applicationIdSuffix = twaManifest.applicationId
buildTypes {
release {
minifyEnabled true
//applicationIdSuffix = twaManifest.applicationId <------ this one
versionNameSuffix = twaManifest.name
}
}
我正在构建一个 TWA,我在网上学习了所有教程,但无法隐藏 chrome 的上部 url 栏 :( 资产 link 文件在这里 https://www.thept.it/.well-known/assetlinks.json
应用位于此处 https://www.thept.it/app
这是 twa 清单
def twaManifest = [
applicationId: 'it.thept',
hostName: 'www.thept.it', // The domain being opened in the TWA.
launchUrl: '/app', // The start path for the TWA. Must be relative to the domain.
name: 'ThePT', // The name shown on the Android Launcher.
themeColor: '#FF6628', // The color used for the status bar.
navigationColor: '#ffffff', // The color used for the navigation bar.
backgroundColor: '#FF6628', // The color used for the splash screen background.
enableNotifications: false, // Set to true to enable notification delegation.
// Add shortcuts for your app here. Every shortcut must include the following fields:
// - name: String that will show up in the shortcut.
// - short_name: Shorter string used if |name| is too long.
// - url: Absolute path of the URL to launch the app with (e.g '/create').
// - icon: Name of the resource in the drawable folder to use as an icon.
shortcuts: [
// Insert shortcuts here, for example:
],
// The duration of fade out animation in milliseconds to be played when removing splash screen.
splashScreenFadeOutDuration: 300
]
错误是
W chromium: [WARNING:digital_asset_links_handler.cc(115)] 语句匹配包失败。
但是根据 Asset Links Tool
包名称是 it.thept.it.thept你能帮帮我吗?
找到解决方案,在 build.gradle REMOVE
//applicationIdSuffix = twaManifest.applicationId
buildTypes {
release {
minifyEnabled true
//applicationIdSuffix = twaManifest.applicationId <------ this one
versionNameSuffix = twaManifest.name
}
}