Selected activity template requires project with androidx.* dependencies.
时间: 2024-05-12 10:13:01 浏览: 356
这个错误通常出现在使用 Android Studio 创建项目时选择使用 Kotlin 或 Java 语言,并选择了使用 Activity 模板创建项目。这个错误是因为使用了不兼容的依赖库版本。
要解决这个问题,需要在项目的 build.gradle 文件中添加以下内容:
```
android {
defaultConfig {
...
// Add this line
vectorDrawables.useSupportLibrary = true
}
}
```
同时,在 dependencies 中添加以下依赖库:
```
dependencies {
...
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'com.google.android.material:material:1.2.1'
}
```
这些步骤可以确保项目使用正确的依赖库版本,从而解决这个问题。
阅读全文