我想用我的Android Studio項目使用Gradle的RomainGuy的ViewServer(https://github.com/romainguy/ViewServer),我不能讓它工作。如何在Android Studio中使用Gradle包含romainguy的ViewServer?
我的理解是在項目的根添加一個文件夾(「庫」),刪除ViewServer到該目錄(不是全部ViewServer
目錄,但內ViewServer
實際庫viewserver
文件夾,並在settings.gradle
include ':VendorSearch'
include ':libraries:ViewServer'
,並在我的build.gradle文件
compile project(":libraries:ViewServer")
當我這樣做,我得到一個消息,說
Could not find any version that matches com.android.tools.build.gradle:0.5.+
我試圖然後手動更新的build.gradle在ViewServer使用最新版本的工具(0.7 +在投寄時),但我得到了新版本的Gradle同樣的錯誤。
任何有關如何包含非jar第三方庫的幫助和一般澄清,將不勝感激!
檢查此鏈接http://www.androidsx.com/how-to-link-an-android-library-project-with-gradle- in-android-studio/ –