我想在Android Studio中编译jar文件。但它出现错误说“无法找到org.gradle.api上的属性文件;内部。
以下是代码:
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.2.3'
compile file 'libs/jtds-1.2.7.jar'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
答案 0 :(得分:2)
您不需要下载jar并添加到libs,您可以使用jcenter repo添加依赖项,替换编译文件&libs / jtds-1.2.7.jar'为了
compile 'net.sourceforge.jtds:jtds:1.3.1'
如果您要搜索其他相关性,可以在此处搜索http://mvnrepository.com/artifact/net.sourceforge.jtds/jtds/1.3.1