自動下載倉庫的包
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')