2016-04-28 131 views
1

我一直在試圖通過下載這個軟件庫https://android.googlesource.com/platform/frameworks/volley,然後按照本指南操作導入模塊到我的項目的凌空庫添加到我的Android項目:凌空錯誤導入時模塊

First get latest volley with git (git clone >https://android.googlesource.com/platform/frameworks/volley). In your current project (android studio) click [File] --> [New] -->[Import >Module]. Now select the directory where you downloaded Volley to. Now Android studio might guide you to do the rest but continue guide to verify >that everything works correct Open settings.gradle (find in root) and add (or verify this is included):

include ':app', ':volley' Now go to your build.gradle in your project and add the dependency:

compile project(":volley").

的gradle時嘗試在導入模塊後同步項目,我收到以下錯誤消息:錯誤:無法下載layoutlib-api.jar(com.android.tools.layoutlib:layoutlib-api:24.3.1):沒有可用的緩存版本用於離線模式。

回答

0

我相信你想用Volley而不是爲排球庫貢獻力量。如果是這樣的話,那麼有更好的方法在你的項目中獲勝。讓Gradle處理它。 Gradle就像Maven一樣是Build Management工具,但更好,因爲它給你更多的自由和靈活性。

How to add libraries to gradle在android studio中。這個鏈接顯示瞭如何將庫添加到你的android項目。

由於Android Studio使用的是Gradle,因爲它使用構建和管理工具的中間地點ANTMaven

爲排球你可以添加 compile 'com.mcxiaoke.volley:library:1.0.19' 到您的項目的應用程序模塊。這個庫可以查找在Github

,或者你能做到這一點採用了android工作室的圖形用戶界面,點擊文件 - >項目結構

enter image description here

example