Android Studio之提示Gradle sync failed: Plugin with id ‘com.novoda.bintray-release‘ not found.
生活随笔
收集整理的這篇文章主要介紹了
Android Studio之提示Gradle sync failed: Plugin with id ‘com.novoda.bintray-release‘ not found.
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
1 問題
導入別人的模塊到Android Studio,錯誤提示如下
Gradle sync failed: Plugin with id 'com.novoda.bintray-release' not found.?
?
?
?
?
?
?
2 解決辦法
在project的build.gradle里面添加如下
dependencies {classpath 'com.android.tools.build:gradle:3.5.2'//加上下面的代碼classpath 'com.novoda:bintray-release:0.3.4'}?
再次進行Rebuild Project,提示錯誤如下
Gradle sync failed: org.gradle.api.internal.component.Usage (1 s 701 ms)解決辦法,把com.novoda版本提高如下
dependencies {classpath 'com.android.tools.build:gradle:3.5.2' // classpath 'com.novoda:bintray-release:0.3.4'classpath 'com.novoda:bintray-release:0.5.0'}?
總結(jié)
以上是生活随笔為你收集整理的Android Studio之提示Gradle sync failed: Plugin with id ‘com.novoda.bintray-release‘ not found.的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Android Studio之提示Una
- 下一篇: Android Studio导入别人的m