以下引用自:Android Studio添加依赖那些事
自动下载仓库的包
compile 'com.android.support:support-v7:25.1.0'
引用libs目录下的所有jar包
compile fileTree(dir: 'libs', include: ['*.jar'])
引用jar包
compile files('libs/gson-2.3.1.jar')
引用arr文件
compile(name: 'amap_3d', ext: 'aar')
引用模块库
compile project(':imageloader')
仅仅编译时使用, 但不会打包到apk或者arr里
provided files('libs/gson-2.3.1.jar')