我正在使用键盘并使用android 3.3
,在3.3 version
之前,我的键盘代码没有问题,但是当我将android更新为3.3
时,会出现此问题。 / p>
configurations.all {
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
def requested = details.requested
if (requested.group == 'com.android.support') {
if (!requested.name.startsWith("multidex")) {
details.useVersion '25.3.1'
}
}
}
}
此DependencyResolveDetails
语句为红色,我不知道为什么。请我需要帮助。
答案 0 :(得分:0)
我有同样的问题。我关闭了项目。从“打开最近的项目”菜单中删除了该项目,并重新打开了该项目,而不是从“最近打开”中重新打开了该项目。