summaryrefslogtreecommitdiff
path: root/build-system/integration-test/test-projects/localAarTest/app/build.gradle
blob: 3ed60b57f939ad7a65b497fbe5919cd3742c77e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
apply plugin: 'com.android.application'

android {
    namespace "com.android.tests.libstest.app"
    compileSdkVersion rootProject.latestCompileSdk
    buildToolsVersion = rootProject.buildToolsVersion
    defaultConfig {
        minSdkVersion 15
    }
}

//
// A basic Android application split over a library and a main project.
//
dependencies {
    api project(':lib1')
}