error: Error retrieving parent for item: No resource found that matches the given name 'Widget.AppCompat.ActionButton'

前端 未结 4 1530
野的像风
野的像风 2021-01-02 03:28

I am following the documentation here to install the Android SupportV7 Libary into my project. There are two things that I notice: 1)When I am browsing my SDK installation d

4条回答
  •  误落风尘
    2021-01-02 04:15

    **Easy prosess

    If you are using IntelliJ/AndroidStudio After updating new updates we get these type errors. so,for old/existing project it will give error.

    It won't show for new project,it will automatically take the updated one.

    Create new project

    New project will not show any errors

    and compare gradle(Module:app) files in both files in both new and existing projects ..

    change the existing/old project gradle file according to newproject gradle file

    below change worked for me.. according this fix ur

    ** compile 'com.android.support:appcompat-v7:25.3.0'

    To

    compile 'com.android.support:appcompat-v7:25.3.1'
    

提交回复
热议问题