2016-11-25 109 views
-1

我得到时compileSdkVersion设置为23或24找不到符号类TintManager

错误例外如下:找不到符号类TintManager
错误:无法找到符号方法getTintManager()

的build.gradle -

dependencies 
{ 
    compile fileTree(include: ['*.jar'], dir: 'libs') 
    testCompile 'junit:junit:4.12' 
    compile 'com.android.support:appcompat-v7:23.2.1' 
    compile 'com.android.support:design:23.2.1' 
    compile 'com.android.support:recyclerview-v7:23.2.1' 
    compile 'com.android.support:support-v4:23.2.1' 
    compile 'com.android.support:cardview-v7:23.2.1' 
} 
+0

请在这里发布一些代码。 – Lawrance

+0

发布您的build.gradle文件。 –

+0

我添加了依赖关系。 – Ragini

回答

-2

如果使用

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

尝试降级到:

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

此解决方案不起作用 – Ragini