2014-09-29 93 views
0

我從github下載了一個項目,該項目沒有爲項目試圖找到的庫RoundedImageView提供必要的庫。我對Android有點新,並沒有任何使用build.gradle文件的經驗,根據庫的自述文件,需要進行編輯。從Maven Central導入RoundedImageView

有人可以給我一步一步的如何導入這個庫嗎?這是我做了什麼,截至目前: 1.從網上下載here

的javadoc.jar文件
  • 改變了我的gradle這個文件,看起來這樣:

    buildscript{ 
        repositories{ 
         jcenter() //not sure what this is, it was already here 
         mavenCentral() //added this 
        } 
        dependencies{ 
         classpath 'com.android.tools.build:gradle:0.12.+' //already here 
         compile 'com.makeramen:roundedimageview:1.3.0' //added this 
        } 
    } 
    allprojects{ 
        repositories{ 
         jcenter() //already here 
         mavenCentral() // added this 
        } 
    } 
    
  • 我也做了一個libs文件夾,把jar文件放在那裏,並將其添加到構建路徑中......儘管沒有擺脫我的錯誤。

    回答

    1
    1. 您不需要添加mavenCentral()。 JCenter是Maven Central的超集。
    2. 將依賴關係添加到buildScript使它們可用於構建腳本(因此是名稱),而不是您嘗試構建的項目。
    3. 將依賴關係添加到allprojects閉包(或者您需要的項目)。
    4. 當然,你不需要手動下載任何東西。這就是依賴管理器的用處。

    buildscript{ repositories{ jcenter() //not sure what this is, it was already here } dependencies{ classpath 'com.android.tools.build:gradle:0.12.+' //already here } } allprojects{ repositories{ jcenter() //already here } dependencies{ compile 'com.makeramen:roundedimageview:1.3.0' //added this } }