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

android {
    namespace "com.android.tests.libstest.app"
    compileSdkVersion rootProject.latestCompileSdk
    buildToolsVersion = rootProject.buildToolsVersion
    defaultConfig {
        minSdkVersion 15
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
}

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

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