自从25.x更新为支持库28.0.0以来,所有支持类和文件夹都丢失了。具体来说,android.support.v4.app
和com.google.android.gms.maps.*
我正在正确导入
implementation "com.android.support:support-compat:28.0.0"
implementation 'com.android.support:design: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.2.1'
}
}
allprojects {
repositories {
google()
jcenter()
}
}
我正在使用gradle 4.10.3
我该怎么办?
答案 0 :(得分:0)
使用Invalidate Caches重新启动即可。