I have developed the application which is working fine on my device running Marshmallow, now when I try to run it on a earlier version of android (V 21) it gives the following error
java.lang.NoSuchMethodError: No Virtual methold getColor(ILandroid/content/res/Resources$Theme;)
in class Landroid/content/res/Resources; or its super classes`
In gradle, I include:
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "com.veggies.test"
minSdkVersion 21
targetSdkVersion 25
versionName '1.1'
`
I have also copied the resources files e.g. colors.xml etc. from values
to values-v21