2
我是一名Android編程和Eclipse IDE的新手。 而我在導入這個lib/project(我怎麼稱呼它?)到我當前的項目中有一些困難。Android + Eclipse如何將增強型ListView項目導入到我的項目中?
鏈接到GitHub庫: https://github.com/timroes/EnhancedListView/wiki
有作者寫了「如何有」,但我想最後一個(由我的一個),因爲我使用Eclipse。
「如何包括
您需要包括庫到您的項目,通過的 下列方式之一:
Include it from Maven Central (recommended) Just enter the following line to your build.gradle file in the dependencies section: compile 'de.timroes.android:EnhancedListView:[email protected]' Where X.Y.Z is a valid release. You can find all releases on the release page or directly in Maven Central. If you use Maven to build, just use the above coordinates in your pom.xml. Download the aar file from the release page and reference it in the dependencies section of your build.gradle: compile files('libs/EnhancedListView-X.Y.Z.aar') If you are using Eclipse or Ant, you are on your own. You most likely want to download the sources and import them in your build system."
我試圖把它包括到構建路徑,但沒有工作,沒有在互聯網上找到任何東西,除了將項目添加到構建路徑之外,還必須包含其他東西嗎?我是否像lib或項目一樣導入它?
做任何其他選項,包括將爲我工作?我該怎麼做?
非常感謝!
將類路徑'de.timroes.android:EnhancedListView:[email protected]'放入依賴關係中的「外部」gradle文件中 – Fattie