Resources$NotFoundException: File res/drawable/abc_ic_ab_back_material.xml

后端 未结 18 847
野性不改
野性不改 2020-11-27 15:49

After solving a JDK zero value error, now I\'m facing this one. I did a little research, but it seems I can\'t get to the point. Here is the log error:

FATA         


        
18条回答
  •  情深已故
    2020-11-27 16:14

    I have tried all solutions mentioned above. Nothing worked for me. The only thing worked for me is very simple is to update all support libraries to latest version as this bug has been fixed in it. So i simple did the below thing in gradle file; updated SDK and support to 25.

    android {
        compileSdkVersion 25
        buildToolsVersion "25"
      defaultConfig {
            targetSdkVersion 25
       }
    
    }
    In dependencies 
    
        compile 'com.android.support:appcompat-v7:25.1.0'
        compile 'com.android.support:design:25.1.0'
        compile 'com.android.support:recyclerview-v7:25.1.0'
    

提交回复
热议问题