当前位置:   article > 正文

Unable to load class 'org.gradle.api.internal.component.Usage_your project may be using a third-party plugin whi

your project may be using a third-party plugin which is not compatible with

Unable to load class 'org.gradle.api.internal.component.Usage

AndroidStudio 编译时出现的问题:

Build Log :

Your project may be using a third-party plugin which is not compatible with the other plugins in the project or the version of Gradle requested by the project

您的项目可能正在使用第三方插件,该插件与项目中的其他插件或项目请求的Gradle版本不兼容

查看引用plugin:

apply plugin: 'com.novoda.bintray-release'
  • 1

查看Project 的build.gradle

dependencies {
    classpath 'com.android.tools.build:gradle:3.4.0'
    classpath 'com.novoda:bintray-release:0.3.4'
    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

com.novoda:bintray-release这个库的作用?
这是将库发布到bintray的工具。 它旨在帮助配置与maven和bintray相关的东西。 目前它适用于Android库项目,普通Java和普通Groovy项目,但该库重点是主要支持Android项目。

详细:

Android 上传自己的开源库到Bintray

进入Github 该项目地址

更新Project 的build.gradle中的bintray-release的版本

dependencies {
    classpath 'com.android.tools.build:gradle:3.4.0'
    classpath 'com.novoda:bintray-release:0.9.1'
    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

然后重新编译

参考:无法加载类 org.gradle.api.internal.component.Usage解决办法

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/382360
推荐阅读
相关标签
  

闽ICP备14008679号