我想在我的項目中使用RecyclerViewLib,爲此我下載它並將其作爲模塊導入到我的項目中空的「hello world」Android項目。我使用過Android Studio 1.0.1使用SDK管理器V24,這是我的應用程序/的build.gradle錯誤:沒有這樣的屬性:GROUP for class:org.gradle.api.publication.maven.internal.ant.DefaultGroovyMavenDeployer
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 17
buildToolsVersion "19.1.0"
defaultConfig {
minSdkVersion 7
targetSdkVersion 17
versionCode 1
versionName "1.0"
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile 'com.android.support:support-v4:20.0.0'
compile fileTree(dir: 'libs', include: ['*.jar'])
}
apply from: 'https://raw.github.com/twotoasters/gradle-mvn-push/master/gradle-mvn-push.gradle'
但是,當我輸入我得到這個錯誤信息:
Error:No such property: GROUP for class: org.gradle.api.publication.maven.internal.ant.DefaultGroovyMavenDeployer
任何人都可以幫我解決這個問題嗎?
喜@goonerdroid這是工作註釋此行謝謝。但是你能解釋更多關於這條線的信息嗎? – max 2015-02-11 09:41:49
圖書館有gradle任務上傳到Maven存儲庫,需要爲gradle環境設置一些屬性,在您的項目中,你不需要/需要。 – goonerDroid 2015-02-11 09:48:47
幫了我兩次:) – NarendraJi 2015-11-06 07:51:51