常见错误集合

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'

    }

}

你可能感兴趣的:(常见错误集合)