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

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

dependencies {
    api project(':baseLibrary')
}