在我目前的项目中,我需要使用tween-engine库,下载包括api和源jar。我可以使用
将tween-engine-api.jar(api)文件添加到我的项目依赖项中dependencies {
compile fileTree(dir: 'libs', include: '*.jar', exclude: '*-sources.jar')
}
但是我无法添加tween-engine-api-sources.jar(sources)文件作为实际库的源代码。有没有办法做到这一点?有没有办法标记文件,以便gradle以我想要的方式获取-sources.jar文件?
答案 0 :(得分:2)
解决了这个问题,最终将库jar和源jar合并为一个,并且按预期工作。