我有一个从https://appmaker.xyz/pwa-to-apk/生成的非常基本的 Android 应用程序。该应用程序实际上非常接近谷歌发布的一个示例,我再也找不到了。
问题是,如果您将设备上的默认浏览器设置为不支持 TWA 的浏览器,应用程序会打开但会显示 URL 栏。如果你想要所有的技术乐趣,这里有一个解释一切的错误报告:https ://bugs.chromium.org/p/chromium/issues/detail?id=942930
我的 Android 开发技能仅限于在 Android Studio 中编译应用程序,我不知道我可以进行哪些修改来强制我的应用程序更喜欢支持 TWA 的浏览器。我可以对此进行一些修改吗?
这是我的 AndroidManifest.xml:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.placeholder">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="${launcherName}"
android:supportsRtl="true"
android:theme="@style/Theme.TwaSplash">
<meta-data
android:name="asset_statements"
android:value="${assetStatements}" />
<activity android:name="android.support.customtabs.trusted.LauncherActivity"
android:label="${launcherName}">
<meta-data android:name="android.support.customtabs.trusted.DEFAULT_URL"
android:value="${defaultUrl}" />
<meta-data
android:name="android.support.customtabs.trusted.STATUS_BAR_COLOR"
android:resource="@color/colorPrimary" />
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE"/>
<data android:scheme="https"
android:host="${hostName}"/>
</intent-filter>
</activity>
</application>
</manifest>