Android Studio 添加arr为依赖
2018/1/24 14:13:19
在 build.gradle 添加
allprojects {
repositories {
flatDir {
dirs 'libs'
}
google()
jcenter()
}
}
将arr放入libs中
在app的build.gradle中添加
compile(name: 'sdk-common-1.120.0', ext: 'aar')
compile(name: 'sdk-commonwidget-1.120.0', ext: 'aar')
compile(name: 'sdk-panowidget-1.120.0', ext: 'aar')