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

android {
    namespace "com.example.android.multiproject"
    compileSdkVersion libs.versions.latestCompileSdk.get().toInteger()

    defaultConfig {
        minSdkVersion libs.versions.supportLibMinSdk.get()
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
}

dependencies {
    api('com.example:library') {
        version { branch = 'main' }
    }
    api('com.example2:library') {
        version { branch = 'main' }
    }

    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()}"
}