Ever since upgrading to the latest appcompat library, I\'m seeing a message in my logs from ViewUtils.
app:theme is now deprecated. Please move to using androi
Check your layout.
You are using a Toolbar where you have defined app:theme.
Toolbar
app:theme.
Now with the support 22.1 app:theme is deprecated. You should use android:theme
app:theme
android:theme
Check here for more info.