Cannot resolve symbol '?attr/actionBarSize' after updating Android Studio from 2.3 to 3.0 for buildToolsVersion '26.0.2'

后端 未结 16 2194
旧巷少年郎
旧巷少年郎 2021-01-30 08:00

After updating Android Studio from 2.3 to 3.0 I changed buildToolsVersion from 26.0.0 to 26.0.2 and after then I am getting this error:

Cannot reso         


        
16条回答
  •  温柔的废话
    2021-01-30 08:21

    please replace android support libraries.

    from

    27.1.1
    

    to

    28.0.0-alpha3
    

    and replace 27 to 28 for following cases:

    compileSdkVersion 28
    buildToolsVersion "28.0.0"
    targetSdkVersion 28
    

    this will fix the issue.

提交回复
热议问题