我已经下载了一个用于签名捕获的库(https://github.com/gcacace/android-signaturepad)并按照说明操作但仍然出现错误:
错误:(2,1)评估项目':signature-pad'时出现问题。
组织/ gradle这个/ API /公开/行家/内部/ DefaultMavenFactory
这就是我所做的,就像指示说的那样:
apply plugin: 'com.android.library'
apply plugin: 'com.github.dcendents.android-maven'
apply plugin: 'com.jfrog.bintray'
repositories {
mavenCentral()
}
dependencies {
compile 'com.github.gcacace:signature-pad:1.1.0'
}
Properties properties = new Properties()
final def bintrayPropertiesFile = project.rootProject.file('bintray.properties')
if (bintrayPropertiesFile.exists()) properties.load(bintrayPropertiesFile.newDataInputStream())
或者是否有其他任何可以建议的免费签名捕获库。
答案 0 :(得分:0)
似乎android-maven出了问题。
这行是否必要?删除它并再试一次:
apply plugin: 'com.github.dcendents.android-maven'
如果不起作用,你应该运行' ./ gradlew build --debug'在终端中获取更多错误信息。