I have commented out AppActivity#getColor(@ColorRes int resId) method to prevent app from crashing right after it launches on Nexus 5 Android M preview. (Not sure if it occurs in other environment as well.)
I'm guessing that a method with the same signature has been added to Context class in preview version so that it conflicts with the method above and causes app to crash.
This revision fixes #4.
I have commented out
AppActivity#getColor(@ColorRes int resId)
method to prevent app from crashing right after it launches on Nexus 5 Android M preview. (Not sure if it occurs in other environment as well.)I'm guessing that a method with the same signature has been added to Context class in preview version so that it conflicts with the method above and causes app to crash.
info