android-gradle 如何添加依赖项

示例

下面的示例描述了如何在app /模块的build.gradle文件中声明三种不同类型的直接依赖关系:

   android {...}
    ...
    dependencies {
        // “编译”配置告诉Gradle将依赖项添加到
        // 编译classpath并将其包含在最终包中。
    
        // Dependency on the "mylibrary" module from this project
        compile project(":mylibrary")
    
        // 远程二进制依赖
        compile 'com.android.support:appcompat-v7:24.1.0'
    
        // 本地二进制依赖
        compile fileTree(dir: 'libs', include: ['*.jar'])
    }