【发布时间】:2015-10-24 03:24:19
【问题描述】:
我正在尝试在我的项目中使用MaterialDialog,但是这个库不支持我的从右到左的语言,我必须对其进行编辑。下载项目并将其导入当前项目后,在构建项目时出现此错误:
Error:(2, 0) Plugin with id 'com.novoda.bintray-release' not found.
在网上多次搜索后,我找到了this link 来解决这个问题。但这不适用于我的项目:
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.0.0'
/* I'm adding this below line */
classpath 'com.novoda:bintray-release:0.2.7'
}
}
allprojects {
repositories {
jcenter()
}
}
【问题讨论】:
标签: android android-gradle-plugin