The Resources.getColor(int id) method has been deprecated.
Resources.getColor(int id)
@ColorInt @Deprecated public int getColor(@ColorRes int id) throws NotFoundException
For all the Kotlin users out there:
context?.let { val color = ContextCompat.getColor(it, R.color.colorPrimary) // ... }