我從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文件放在那裏,並將其添加到構建路徑中......儘管沒有擺脫我的錯誤。