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"}
}
?