常见错误集合
2021-09-16 本文已影响0人
ATTTA
android编译错误AAPT: error: resource android:attr/lStar not found解决
删除 implementation "androidx.core:core-ktx:+"
添加
configurations.all {
resolutionStrategy {
force 'androidx.core:core-ktx:1.6.0'
}
}
android编译错误AAPT: error: resource android:attr/lStar not found解决
删除 implementation "androidx.core:core-ktx:+"
添加
configurations.all {
resolutionStrategy {
force 'androidx.core:core-ktx:1.6.0'
}
}