Android Studio:无法解析导入(FragmentActivity,AmbientModeSupport等)

时间:2018-09-17 04:19:25

标签: android maven android-studio android-studio-3.0

我希望这次我们可以快点:D

在我许多项目的导入中,有四个导入无法解决。 如我所见,例如第一个依赖于support-v4库,我检查了它是否在库列表中。 我尝试了关于此错误的所有在线解决方案,包括重新构建项目,清除构建项目,“使缓存无效并重新启动”等等。

奇怪的是,工作中的PC上完全相同的项目可以正常编译。我今天将它从github拉到了我的家用电脑,遇到了这些我无法修复的错误。我想念什么?

(AndroidManifest.xml中的活动分支还显示了“ ... MainActivity无法分配给android.app.activity”错误,此后我想修复该错误-与它有什么关系吗?)

在这里您看到导入失败的情况:

import android.support.v4.app.FragmentActivity;
import android.support.wear.ambient.AmbientModeSupport;
import android.support.wear.widget.drawer.WearableActionDrawerView;
import android.support.wear.widget.drawer.WearableNavigationDrawerView;

这是我的gradle应用程序依赖项的样子:

dependencies {
 //noinspection GradleCompatible
 implementation 'com.android.support:wear:27.1.1'
 implementation 'com.google.android.gms:play-services-wearable:15.0.1'
 //implementation 'com.android.support:support-v13:27.1.1'
 compileOnly 'com.google.android.wearable:wearable:2.3.0'
 implementation 'com.google.android.support:wearable:2.3.0'
 implementation 'com.android.support:support-v4' //:27.1.1'
 implementation 'com.android.support:appcompat-v7:27.1.1'
}

最后我也将其包含在AndroidManifest.xml中:

<meta-data
   tools:replace="android:value"
   android:name="android.support.VERSION"
   android:value="27.1.1"/>

0 个答案:

没有答案