我是一个使用android studio的新手Android应用程序开发人员,我正在尝试使用来自https://github.com/emilsjolander/StickyListHeaders的粘性列表标题。我通过文件 - >这样做新 - >导入模块和我添加依赖项。但是我收到了错误
Error:No such property: GROUP for class: org.gradle.api.publication.maven.internal.deployer.DefaultGroovyMavenDeployer
我的项目build.gradle是:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "testingapp.dylanzammit.com.anothernewproj"
minSdkVersion 21
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.0.1'
compile 'se.emilsjolander:stickylistheaders:2.7.0'
}
答案 0 :(得分:1)
如果要在Android Studio中将项目库添加到项目中,可以通过三种不同的方式完成。请阅读此链接https://stackoverflow.com/a/35369267/5475941。在这篇文章中,我解释了如何在Android工作室中导入JAR文件,并逐步解释了屏幕截图的所有可能方法。我希望它有所帮助。