如何在gradle中导入android.support.v7.widget.AppCompatCheckBox

时间:2016-04-12 14:17:09

标签: android gradle

我需要使用这个小部件:

android.support.v7.widget.AppCompatCheckBox

但是当我启动应用时,我会得到一个ClassNotFoundException因此我应该向build.gradle添加什么依赖项才能让我能够使用它?

1 个答案:

答案 0 :(得分:4)

您应该根据此要求更改compileSdkVersion

compileSdkVersion 22 // compileSdkVersion is the version of the compiler used in building the app
buildToolsVersion "22.0.1"

然后致电

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

然后 Clan-Rebuild-Sync