[問題] import github project 到自己的project

看板AndroidDev作者 (猩爺可以了)時間6年前 (2018/12/11 01:16), 編輯推噓0(0014)
留言14則, 2人參與, 6年前最新討論串1/1
我想要使用 這個 github的project https://github.com/PhilJay/MPAndroidChart/ 參造他所提供的 MPChartExample 來寫code 但是裡面會使用到 MPChartLib 的一些 function 請問我要怎麼把這個 folder import 到我的 project 我使用的是 Android Studio 平台開發 看這的解答是要在 app/build.grade 加入 https://github.com/PhilJay/MPAndroidChart/issues/26 但是會出現 Project with path ':MPChartLib' could not be found in project ':app'. 請問需要把 MPChartLib這個folder放到哪個目錄下呢 這個 lib 沒有辦法像下面這樣寫就可以從網站上download下來嗎 implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0-alpha' -- ※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 36.229.62.228 ※ 文章網址: https://www.ptt.cc/bbs/AndroidDev/M.1544462177.A.685.html

12/11 09:18, 6年前 , 1F
放在project第一層就可以
12/11 09:18, 1F

12/11 09:19, 6年前 , 2F
settings.gradle 加入 include 'MPChartLib'
12/11 09:19, 2F

12/11 09:21, 6年前 , 3F
build.gradle 的dependencies 加入
12/11 09:21, 3F

12/11 09:22, 6年前 , 4F
implementation project (':MPChartLib')
12/11 09:22, 4F

12/11 09:23, 6年前 , 5F
以上是你自己Download他的library的import方式
12/11 09:23, 5F

12/11 09:48, 6年前 , 6F
第二,你是要透過gradle下載的話
12/11 09:48, 6F

12/11 09:48, 6年前 , 7F

12/11 09:49, 6年前 , 8F
你maven url有加嗎?沒加找不到庫
12/11 09:49, 8F

12/12 00:37, 6年前 , 9F
謝謝解答!我是使用第一種方法,加入之後遇到這個問題
12/12 00:37, 9F

12/12 00:37, 6年前 , 10F
More than one file was found with OS independent pat
12/12 00:37, 10F

12/12 00:38, 6年前 , 11F
'META-INF/proguard/androidx-annotations.pro'
12/12 00:38, 11F

12/12 00:39, 6年前 , 12F
後來在 build.gradle(app) 的 android {}中加入這行解決
12/12 00:39, 12F

12/12 00:40, 6年前 , 13F
packagingOptions { exclude 'META-INF/proguard/androi
12/12 00:40, 13F

12/12 00:40, 6年前 , 14F
dx-annotations.pro' }
12/12 00:40, 14F
文章代碼(AID): #1S3fzXQ5 (AndroidDev)
文章代碼(AID): #1S3fzXQ5 (AndroidDev)