天天看點

Plugin with id 'com.novoda.bintray-release' not found.的解決方案

import Module的時候,有時候會提示Plugin with id 'com.novoda.bintray-release' not found.

Plugin with id 'com.novoda.bintray-release' not found.的解決方案

點選Open File,定位到該Module的build.gradle檔案中的代碼:

Plugin with id 'com.novoda.bintray-release' not found.的解決方案

解決方案:在項目的build.gradle檔案【注意不是app的build.gradle檔案】中添加以下代碼:

//解決Plugin with id 'com.novoda.bintray-release' not found.
classpath 'com.novoda:bintray-release:0.3.4'      
Plugin with id 'com.novoda.bintray-release' not found.的解決方案

 最後重新編譯下即可。