AAPT: error: resource android:attr/lStar not found

项目中遇到
AAPT: error: resource android:attr/lStar not found

加上
configurations.all {
resolutionStrategy {
force ‘androidx.core:core-ktx:1.6.0’
}
}
dependencies {
implementation ‘androidx.appcompat:appcompat:1.4.1’
implementation ‘com.google.android.material:material:1.4.+’
implementation ‘androidx.constraintlayout:constraintlayout:2.1.4’

implementation 'com.zhihu.android:matisse:0.5.3-beta3'
implementation 'com.github.bumptech.glide:glide:4.9.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.14.2'

implementation "com.android.support:multidex:1.0.3"
implementation 'com.blankj:utilcode:1.12.5'

}
改成
implementation ‘androidx.appcompat:appcompat:1.2.0’
implementation ‘com.google.android.material:material:1.2.+’

问题解决!!!!!!!

你可能感兴趣的:(android,android,android,studio,ide)