欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Android Studio导入别人的module提示错误Plugin with id 'com.jfrog.bintray' not found.

程序员文章站 2022-06-07 18:36:30
...

1 问题

Android Studio导入别人的module提示错误如下

Plugin with id 'com.jfrog.bintray' not found.
Plugin with id 'com.github.dcendents.android-maven' not found

 

 

 

 

2 解决办法

在我们的项目的build.gradle添加如下配置

buildscript {
    repositories {
        google()
        jcenter()
        
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.5.2'
        
        //添加下面2个
        //1.自动化maven打包插件
        classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
        //2.自动上传至Bintray平台插件
        classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:1.0"
    }
}