summaryrefslogtreecommitdiff
path: root/build-system/integration-test/test-projects/customArtifactDep/app/build.gradle
blob: 2f94f51245ff46e32d34ece917a62d0706b6666b (plain)
1
2
3
4
5
6
7
8
9
10
11
apply plugin: 'com.android.application'

android {
    namespace "com.example.android.multiproject"
    compileSdkVersion rootProject.latestCompileSdk
    buildToolsVersion = rootProject.buildToolsVersion
}

dependencies {
    api project(path: ':util', configuration: 'custom')
}