How to solve Didn't find class "android.support.v7.internal.widget.TintManager"?

From stackoverflow


The reason is that the version of compile'com.android.support:appcompat-v7 is too high, causing incompatibility.

Solution:

In the gradle configuration file, change the dependency version of compile'com.android.support:appcompat-v7 to

compile 'com.android.support:appcompat-v7:23.1.0'


Recompile again to see if it is resolved?

Guess you like

Origin blog.csdn.net/lxxlxx888/article/details/54350002