appcompat-v7:21.0.0′: No resource found that matches the given name: attr ‘android:actionModeShareDrawable’
This is likely because you haven’t set your compileSdkVersion to 21 in your build.gradle file. You also probably want to change your targetSdkVersion to 21. android { //… compileSdkVersion 21 defaultConfig { targetSdkVersion 21 } //… } This requires you to have downloaded the latest SDK updates to begin with. Once you’ve downloaded all the … Read more