我在android studio项目中尝试从github导入库时遇到问题。很少有图书馆成功导入。这是我在android studio项目中导入的方法:
从github下载zip。
提取相应的库。
在android studio项目中导入模块,然后导入库并添加依赖项。
以下是我在尝试导入其链接为https://github.com/mikepenz/MaterialDrawer
的素材抽屉库时遇到的错误 Error:No such property: GROUP for class: org.gradle.api.publication.maven.internal.ant.DefaultGroovyMavenDeployer
我从github导入库的方法是否正确?
这是我的模块gradle。
apply plugin: 'com.android.application'
android {
compileSdkVersion 22
buildToolsVersion "22.0.1"
defaultConfig {
applicationId "com.works.vipul.materialdrawer"
minSdkVersion 15
targetSdkVersion 22
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.2.0'
compile('com.mikepenz:materialdrawer:3.1.2@aar') {
transitive = true
}
}
答案 0 :(得分:0)
您应该通过gradle解析 materialdrawer 依赖关系。
在存储库
下的build.gradle中添加这些内容repositories {
mavenCentral() //add this line
}
还在依赖关系
下添加此项compile('com.mikepenz:materialdrawer:3.1.2@aar') {
transitive = true
}