问题2:
导入项目后出现:Error:(47, 0) No such property: sonatypeRepo for class:
org.gradle.api.publication.maven.internal.ant.DefaultGroovyMavenDeployer。
这种问题一般是出现在导入一些开源项目的时候。原因为该项目的原作者会把项目发布到maven中央仓库中,所以在gradle中添加了相关的maven发布任务,而发布任务需要配置username(找不到username也是同样的问题)或sonatypeRepo等属性的值,作者是不会把这些值上传的,所以导致找不到这些属性。你不是该项目的作者,自然不需要这些任务,最干净的方法是把这些任务及引用的maven,
signing插件的声明删除即可。当然,你也可以在gradle.properties中添加上找不到的这些属性的值以通过编译。
比如我在gradle.properties中添加上:
#To fix compile error. 这里的三个变量名根据uploadArchives中所引用的变量名不同,具体看情况而配置。
sonatypeRepo=null
sonatypeUsername=null
sonatypePassword=null
问题3:andriod
gradle插件版本过低。
dependencies{
classpath 'com.android.tools.build:gradle:0.10.2'
}
提示信息:You
must use a newer version of the Android Gradle plugin. The minimum
supported version is 0.12.0 and the recommended version is
0.12.+
这种情况一般出现在导入其他人的项目,或者更新了Android studio之后。原因是android
studio是依赖gradle构建的,在构建android项目的时候,会使用到相关的android
gradle插件。随着android studio及sdk的更新,可能会导致旧版本的插件不可用(比如在build
tools的19.0版本之后,zipalign从tools目录中被移到build tools的对应版本目录中),所以
新版本的android studio会需要更高版本的插件来编译。
按提示,将插件的版本改为0.12.0以上就可以,推荐的版本是使用0.12.+。
问题4:Error:(2, 0) Plugin with id
‘com.github.dcendents.android-maven’ not found解决办法。
找到project 的 build.gradle 添加如下代码
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:1.0"12
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.0.0-alpha3'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:1.0"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}