我正在尝试使用受信任的Web活动,遵循本指南: https://developers.google.com/web/updates/2017/10/using-twa
我确实遵循了所有步骤,但是有几个词Android Studio无法自行解决,我找不到任何解决方案。主要问题似乎是 org.chromium .
以粗体显示它无法解决的单词:
在 TwaSessionHelper 中.java :
import org.chromium.customtabsclient.shared.ServiceConnection;
import org.chromium.customtabsclient.shared.ServiceConnectionCallback;
。
public class TwaSessionHelper 实现ServiceConnectionCallback{
。
mConnection = newServiceConnection(this(;
在 TwaLauncherActivity 中.java :
setContentView(R.layout.activity_twa_launcher(;
在几行代码中:
TwaSessionHelper.TwaSessionCallback twaSessionCallback =mTwaSessionCallback.get((;
我错过了什么?
这是我的build.gradle文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
defaultConfig {
applicationId "didi.a8bitpocketwrestlers"
minSdkVersion 17
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.+'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
implementation 'com.android.support:customtabs:28.+'
}
Android Studio 无法解析ServiceConnectionCallback类,因为com.android.support:customtabs
库不包含/提供它。此类仅存在于此 GitHub 存储库中,没有任何 maven 存储库。因此,您无法在build.gradle文件中添加对它的依赖,您必须下载它并手动将其添加到项目中。
从此 GitHub 存储库中仅下载共享目录,将其作为模块添加到项目中。
在应用程序 build.gradle 文件中,添加对共享模块的依赖关系。
compile project(':shared')