无法导入 android.support.v4.content.ContextCompat
Can't import android.support.v4.content.ContextCompat
嗨,我的 android 工作室发生了什么事,我需要使用 ContextCompat 进行 checkSelfPermission,因此我需要导入 android.support.v4.content.ContextCompat 但 android 工作室不能在此库中找到
从这张图片你可以看到这个库只有媒体和 R 但没有内容所以我已经在 app/build.gradle
中添加了实现
implementation "com.android.support:support-v4:27.1.1"
所以我在这里缺少什么?
谢谢
在您的项目级别 build.gradle
中像这样在 allprojects
的 repositories
下添加 google()
allprojects {
repositories {
google()
// If you're using a version of Gradle lower than 4.1, you must
// instead use:
//
// maven {
// url 'https://maven.google.com'
// }
}
}
希望对您有所帮助
尝试将您的支持库更新到最新版本 28.0.0-alpha1
并尝试 Build -> clean Project
或 Invalidate cache and restart
因为 android studio 可能无法清除旧缓存。
嗨,我的 android 工作室发生了什么事,我需要使用 ContextCompat 进行 checkSelfPermission,因此我需要导入 android.support.v4.content.ContextCompat 但 android 工作室不能在此库中找到
从这张图片你可以看到这个库只有媒体和 R 但没有内容所以我已经在 app/build.gradle
中添加了实现implementation "com.android.support:support-v4:27.1.1"
所以我在这里缺少什么?
谢谢
在您的项目级别 build.gradle
allprojects
的 repositories
下添加 google()
allprojects {
repositories {
google()
// If you're using a version of Gradle lower than 4.1, you must
// instead use:
//
// maven {
// url 'https://maven.google.com'
// }
}
}
希望对您有所帮助
尝试将您的支持库更新到最新版本 28.0.0-alpha1
并尝试 Build -> clean Project
或 Invalidate cache and restart
因为 android studio 可能无法清除旧缓存。