如何解决Didn't find class “android.support.v7.internal.widget.TintManager”?

来自stackoverflow


原因是compile 'com.android.support:appcompat-v7的版本过高,造成的不兼容。

解决办法:

在gradle配置文件中将compile 'com.android.support:appcompat-v7的依赖版本变为

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


再次重新编译,看看是不是解决了?

猜你喜欢

转载自blog.csdn.net/lxxlxx888/article/details/54350002