获得"Can't determine type for tag '<macro name=" m3_comp_bottom_app_bar_container_color ">?att



build.gradle

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:7.0.4"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.10"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}

build.gradle(:app)

plugins {
id 'com.android.application'
id 'kotlin-android'
}
android {
compileSdk 32
defaultConfig {
applicationId "com.example.northguide"
minSdk 21
targetSdk 32
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
}
dependencies {
implementation 'androidx.core:core-ktx:1.9.0'
implementation 'androidx.appcompat:appcompat:1.5.1'
implementation 'com.google.android.material:material:1.7.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
testImplementation 'junit:junit:4.+'
androidTestImplementation 'androidx.test.ext:junit:1.1.4'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.0'
}

`

我得到错误:

"无法确定标记"的类型?attr/colorSurface";

当尝试在android Studio中构建我的android项目时。

任何人都可以解释发生了什么以及如何解决这个问题。我刚刚用空活动创建了这个项目,并尝试运行该应用程序以确保所有内容都同步,我得到了这个。我以前也做过,但第一次遇到这样的错误。我不知道这是不是安卓工作室更新中的一个错误。

我遇到了同样的问题,我还没有完全研究为什么存在这个问题。我所能发现的是,主要的罪魁祸首是依赖项部分中的以下两行:

implementation 'androidx.appcompat:appcompat:1.5.1'
implementation 'com.google.android.material:material:1.7.0'

您可以实施两种解决方案:

  1. 将Android Studio版本更新到最新版本
  2. 降级这两个依赖项的版本

当然,解决方案#1是最好的,但方案#2对我有效(我没有时间升级和"可能处理新的未知问题")。我降级如下:

implementation 'androidx.appcompat:appcompat:1.4.1'
implementation 'com.google.android.material:material:1.6.0'

我也遇到了同样的问题,在我的情况下,解决方案是将Android Studio更新到最新版本(Electric Eel)。我还更新了Gradle和所有依赖项,它对我有效

干杯!

相关内容

  • 没有找到相关文章

最新更新