Android 依赖项{compile";com.github.danielnilsson9:color-picker-view:1.4。0@aar";}

Android 依赖项{compile";com.github.danielnilsson9:color-picker-view:1.4。0@aar";},android,compilation,Android,Compilation,我将在我的项目中使用从github下载的颜色选择器。在它的github页面中,提到了以下代码: dependencies { compile "com.github.danielnilsson9:color-picker-view:1.4.0@aar" } 我不知道它是什么,我应该使用谁。您应该将它添加到“build.gradle”文件中 例如: android { ... dependencies { compile fileTree(include:

我将在我的项目中使用从github下载的颜色选择器。在它的github页面中,提到了以下代码:

dependencies {
    compile "com.github.danielnilsson9:color-picker-view:1.4.0@aar"
}
我不知道它是什么,我应该使用谁。

您应该将它添加到“build.gradle”文件中

例如:

android {
    ...
    dependencies {
        compile fileTree(include: ['*.jar'], dir: 'libs')
        compile "com.github.danielnilsson9:color-picker-view:1.4.0@aar"
    ...
}