英文:
Common attribute not showing in Android Studio
问题
我无法翻译代码部分,以下是翻译好的文本:
"I am not getting common attribute.
I have set target to SDK 33 but it doesn't work with me. I have also deleted Android API 33 and set Android 12.0(S) but a new error comes ( minCompileSdk (33) specified in a dependency's AAR metadata )
please help me"
英文:
I am not getting common attribute.
I have set target to SDK 33 but it doesn't work with me. I have also deleted Android API 33 and set Android 12.0(S) but a new error comes ( minCompileSdk (33) specified in a dependency's AAR metadata )
please help me
答案1
得分: 1
由于库版本不同,这是由于库版本引起的问题。要解决这个问题,一个简单的方法是将编译SDK版本设置为33。查看git历史记录以检查哪些依赖项的数值已更改(特别是Kotlin核心和生命周期)。
英文:
This is due to the library versions.
An easy fix to this is setting the compile SDK version to 33.
Look at the git history to check which dependency values have changed (especially kotlin core and lifecycle)
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论