作者t3825288 (猩爷可以了)
看板AndroidDev
标题[问题] import github project 到自己的project
时间Tue Dec 11 01:16:11 2018
我想要使用 这个 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://webptt.com/cn.aspx?n=bbs/AndroidDev/M.1544462177.A.685.html
1F:→ zcbxvsdf: 放在project第一层就可以 12/11 09:18
2F:→ zcbxvsdf: settings.gradle 加入 include 'MPChartLib' 12/11 09:19
3F:→ zcbxvsdf: build.gradle 的dependencies 加入 12/11 09:21
4F:→ zcbxvsdf: implementation project (':MPChartLib') 12/11 09:22
5F:→ zcbxvsdf: 以上是你自己Download他的library的import方式 12/11 09:23
6F:→ zcbxvsdf: 第二,你是要透过gradle下载的话 12/11 09:48
8F:→ zcbxvsdf: 你maven url有加吗?没加找不到库 12/11 09:49
9F:→ t3825288: 谢谢解答!我是使用第一种方法,加入之後遇到这个问题 12/12 00:37
10F:→ t3825288: More than one file was found with OS independent pat 12/12 00:37
11F:→ t3825288: 'META-INF/proguard/androidx-annotations.pro' 12/12 00:38
12F:→ t3825288: 後来在 build.gradle(app) 的 android {}中加入这行解决 12/12 00:39
13F:→ t3825288: packagingOptions { exclude 'META-INF/proguard/androi 12/12 00:40
14F:→ t3825288: dx-annotations.pro' } 12/12 00:40