我遵循了Google针对最近Trusted Web Activities制定的指南,并且我的应用在我的设备和某些选定的模拟器上运行良好。
但是,在某些设备和仿真器(例如Google Pixel 2)上,我会在启动时立即崩溃。
logcat输出:
E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.ocdev.yu_gi_ohdatabase, PID: 5020
java.lang.NullPointerException: Attempt to invoke virtual method 'boolean android.support.customtabs.CustomTabsSession.validateRelationship(int, android.net.Uri, android.os.Bundle)' on a null object reference
at android.support.customtabs.TrustedWebUtils.launchAsTrustedWebActivity(TrustedWebUtils.java:134)
at android.support.customtabs.trusted.LauncherActivity$TwaCustomTabsServiceConnection.onCustomTabsServiceConnected(LauncherActivity.java:199)
at android.support.customtabs.CustomTabsServiceConnection.onServiceConnected(CustomTabsServiceConnection.java:44)
at android.app.LoadedApk$ServiceDispatcher.doConnected(LoadedApk.java:1634)
at android.app.LoadedApk$ServiceDispatcher$RunConnection.run(LoadedApk.java:1663)
at android.os.Handler.handleCallback(Handler.java:789)
at android.os.Handler.dispatchMessage(Handler.java:98)
at android.os.Looper.loop(Looper.java:164)
at android.app.ActivityThread.main(ActivityThread.java:6541)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.Zygote$MethodAndArgsCaller.run(Zygote.java:240)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:767)
AndroidManifest.xml:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.ocdev.yu_gi_ohdatabase">
<application
android:allowBackup="true"
android:icon="@mipmap/ygo_fore"
android:label="@string/app_name"
android:roundIcon="@mipmap/ygo_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<meta-data
android:name="asset_statements"
android:resource="@string/asset_statements" />
<activity
android:name="android.support.customtabs.trusted.LauncherActivity">
<!-- Edit android:value to change the url opened by the TWA -->
<meta-data
android:name="android.support.customtabs.trusted.DEFAULT_URL"
android:value="https://db.ygoprodeck.com" />
<!-- This intent-filter adds the TWA to the Android Launcher -->
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<!--
This intent-filter allows the TWA to handle Intents to open
airhorner.com.
-->
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE"/>
<!-- Edit android:host to handle links to the target URL-->
<data
android:scheme="https"
android:host="db.ygoprodeck.com"/>
</intent-filter>
</activity>
</application>
</manifest>
模块build.gradle:
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.ocdev.yu_gi_ohdatabase"
minSdkVersion 16
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'com.github.GoogleChrome.custom-tabs-client:customtabs:3a71a75c9f'
implementation 'com.android.support:support-media-compat:28.0.0'
implementation 'com.android.support:animated-vector-drawable:28.0.0'
implementation 'com.android.support:support-v4:28.0.0'
}
项目build.gradle:
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
我还通过Browserstack在Android模拟器上测试了我的发行版APK,并且收到了完全相同的问题。 我还在某些经过测试的物理设备(例如三星Galaxy S7 Edge)上收到了该问题,但奇怪的是,我测试了另一款Galaxy S7 Edge,并且工作正常。根据到目前为止的测试,我猜想它可以在50%的测试设备上运行。 我不是继承的Android开发人员,所以我一直在努力寻找导致此问题的原因,以及为什么它在某些设备上正常运行,而在某些设备上却无法运行。
答案 0 :(得分:1)
我有同样的问题。
我注意到,如果我将chrome更新到最新版本(当前为72),则TWA效果很好。 令人讨厌的是,用户没有错误消息可以使他更新chrome。
IMO,这使TWA当前无法使用。
答案 1 :(得分:0)
我的TWA也遇到了这个问题,我发现如果将浏览器默认设置为chrome或edge,它将可以使用,但不适用于三星浏览器和Firefox
答案 2 :(得分:0)
我在Chromium论坛上发布了此问题,并将其重定向到列出的here临时修复程序。
简而言之,他们已经意识到了这个问题,并希望尽快有一个永久性的解决方案,这样就不必长期使用此临时修复程序。
给出的答案:
目前,您可以将最后一个参数更改为 CustomTabsClient#getPackageName here为true。该参数是 'ignoreDefault',您可能会猜到会制作软件包 选择将忽略用户的默认设置。理想情况下,虽然这不会 需要很长时间。
答案 3 :(得分:-1)
新版本可能不再会发生此问题。但是,如果有人仍然使用旧版本,则可以帮助更新到新版本。 在新版本中,已按照以下说明删除了validate函数:
允许从TWA客户端发送多个受信任的来源 当前,如果用户能够导航或重定向到 TWA中另一个受信任的来源,这是确保 其他来源得到验证是通过致电 客户端上的CustomTabsSession#verifyRelationship。除了被 有点笨拙的api,这会延迟启动Chrome,并且 因此,显示初始屏幕,因此需要更改。