android-gradle 远程二进制依赖项
示例
您可以在Gradle中使用此结构添加远程依赖项:
compile 'group:name:version'
或以下替代语法:
compile group: 'xxx', name: 'xxxxx', version: 'xxxx'
例如:
compile 'com.android.support:appcompat-v7:24.1.0'
该compile'com.android.support:appcompat-v7:24.1.0“行声明对Android支持库24.1.0版本的依赖。