[Android Studio报错]タグ '<macro name=“m3_comp_bottom_app_bar_container_color” のタイプを決定できません

最新バージョンの SDK33 を使用して新しいプロジェクトを作成すると、直接コンパイルすると次のエラーが報告されます。

Can't determine type for tag '<macro name="m3_comp_bottom_app_bar_container_color">?attr/colorSurface</macro>'

調査の結果、app ディレクトリ内の build.gradle ファイルの構成に問題があることが判明したため、依存関係の構成項目を次のように変更する必要があります。

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

着替える:

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

再度コンパイルすると成功します

おすすめ

転載: blog.csdn.net/weixin_44440669/article/details/127753568