We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
compile 'cn.aigestudio.downloader:Downloader:1.4.3'
aar下载地址:Downloader-1.4.3.aar
将Downloader这个Module导入你的Project中
在你Project的settings.gradle文件中增加如下内容:
include ':Downloader'
这里要注意的是在一些gradle版本中需要以英文逗号的方式追加Module:
include ':YourMoudle',':Downloader'
添加后当出现“sycn now”提示时点击同步即可
在你项目的build.gradle文件的dependencies区域中添加如下内容:
compile project(':Downloader')