summaryrefslogtreecommitdiff
path: root/build-system/integration-test/test-projects/libTestDep/build.gradle
blob: 46a2fec01923f32899f3958aebeb613e0082a833 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
apply from: "../commonHeader.gradle"
buildscript { apply from: "../commonBuildScript.gradle" }


apply plugin: 'com.android.library'

dependencies {
    api 'com.google.code.findbugs:jsr305:1.3.9'
    api 'com.google.guava:guava:19.0'

    androidTestImplementation "com.android.support.test:runner:${libs.versions.testSupportLibVersion.get()}"
    androidTestImplementation "com.android.support.test:rules:${libs.versions.testSupportLibVersion.get()}"
}

android {
    namespace "com.android.tests.libdeps"
    compileSdkVersion libs.versions.latestCompileSdk.get().toInteger()
    buildToolsVersion = libs.versions.buildToolsVersion.get()
    defaultConfig {
        minSdkVersion libs.versions.supportLibMinSdk.get()
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
}