作者:tigerweilong | 来源:互联网 | 2023-05-19 13:03
如何解决《如何修复未找到id"com.github.dcendents.android-maven"的插件.在android工作室》经验,为你挑选了5个好方法。
我正在android studio中创建一个android应用程序.我正在从我这里下载的项目中添加一个库.当我将这个库添加到我的项目时,它显示一个错误,名为"Error:(2,0)插件,ID为'com.github.dcendents.android-maven'未找到." .请告诉我如何解决它.
1> 小智..:
在顶级build.gradle依赖项中,粘贴此类路径.我想知道为什么我不能在网站上看到这种方法.无论如何,我用这种方式修复它.
dependencies {
//YOUR DEPEDENCIES
classpath 'com.github.dcendents:android-maven-plugin:1.2'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
2> DeltaCap019..:
这里有两种情况:
如果您apply plugin: 'com.github.dcendents.android-maven'
在模块级gradle中使用.
此插件通常用于将您的库项目分发和上传到bintaray.
在这种情况下,您所要做的就是使用gradle插件和maven-gradle-plugin的正确组合.
以下版本的组合对我有用:
内部项目级别gradle
classpath 'com.android.tools.build:gradle:2.3.0+'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.0'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
并在gradle-wrapper.properties中
distributiOnUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip
在模块级gradle中:apply plugin: 'com.github.dcendents.android-maven'
您可以从Github查看兼容版本列表
如果你没有使用它,就像你的情况一样,只需删除即可
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.0'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
和
apply plugin: com.github.dcendents.android-maven
3> 小智..:
只需在build.gradle的开头删除"apply plugin:'android-maven'"行,
apply plugin: 'com.android.application'
apply plugin: 'android-maven'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
该项目不需要专家.
4> Dr. Failov..:
尝试将这些行添加到项目的build.gradle文件到依赖项块中:
classpath 'com.github.dcendents:android-maven-plugin:1.2'
像这样
dependencies {
classpath 'com.android.tools.build:gradle:1.3.0'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.2'
classpath 'com.github.dcendents:android-maven-plugin:1.2'
}
它对我有用.
5> Deepti..:
在project.gradle依赖项中添加以下行:
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.2'