android 无法确定标记“< macro name="m3_comp_bottom_app_bar_container_color">?attr/colorSurface< /macro>”的类型

5cnsuln7  于 2022-11-03  发布在  Android
关注(0)|答案(5)|浏览(433)

嗨,我有问题运行我的Android应用程序...
下面是错误的一个ss:
enter image description here

cx6n0qe3

cx6n0qe31#

在您的build.gradle文件中“dependencies”部分粘贴以下内容:

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

并删除具有相同文本和其他数字版本的旧字符串。(在我的示例中:

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

).为我工作过。
来源:https://github.com/facebook/react-native/issues/33926

djmepvbi

djmepvbi2#

那是由1.7.0引起的:

implementation 'com.google.android.material:material:1.7.0'

你最好坚持1.6.0直到他们解决这个问题

implementation 'com.google.android.material:material:1.6.0'
fjaof16o

fjaof16o3#

我通过在build.gradle(:app)中替换implementation 'androidx.recyclerview:recyclerview:1.2.1'而不是implementation 'com.google.android.material:material:1.7.0'来解决此问题

wlp8pajw

wlp8pajw4#

实现'androidx.应用程序兼容性:应用程序兼容性:1.4.1'实现'com.谷歌.android.材料:材料:1.6.0'这工程检查!

ttp71kqs

ttp71kqs5#

在build.gradle(:应用程序)中,
更新,compileSdk和targetSdk到33帮助了我(从32)。

相关问题