Tag: 导入模块

错误:没有这样的属性:GROUP for class:org.gradle.api.publication.maven.internal.ant.DefaultGroovyMavenDeployer

我想在我的项目中使用RecyclerViewLib ,为此我下载了它,并将其作为模块导入到我的空“Hello World”Android项目中。 我正在使用SDK工作室v1.0.1使用sdkpipe理器v24,这是我的应用程序/ build.gradle apply plugin: 'com.android.application' android { compileSdkVersion 17 buildToolsVersion "19.1.0" defaultConfig { applicationId "com.example.mk.dragdrop4" minSdkVersion 14 targetSdkVersion 17 versionCode 1 versionName "1.0" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } } dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) } 这是我的图书馆/ build.gradle apply plugin: 'com.android.library' android { compileSdkVersion […]