I've been coding around in android studio for a decent bit now. Recently an issue popped up where the project would be unable to compile and I traced down the error to a duplicate variable
public static final int GradientColor_fontVariationSettings = 13;
public static final int GradientColor_fontVariationSettings = 14;
in the file R.java. I removed this but since it is auto-generated, it simply adds it again and fails to compile once more. The error I am getting is variable GradientColor_fontVariationSettings is already defined in class styleable.
EDIT: I found the file and deleted the reference, but the issue is still occuring. Any ideas anybody