summaryrefslogtreecommitdiff
path: root/integration-tests/ProguardedAppWithTest/build.gradle
blob: 86ad4181d1308853b15c71e23422f20275664fd3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
buildscript {
    def runningInIde = project.hasProperty('android.injected.invoked.from.ide')
    rootProject.ext.runningInIde = runningInIde
    if (runningInIde) {
        apply from: "../ideCommonBuildScript.gradle"
    } else {
        apply from: "../commonHeader.gradle"
        apply from: "../commonBuildScript.gradle"
    }
}
if (!rootProject.ext.runningInIde) {
    apply from: "../commonHeader.gradle"
    subprojects {
        project.apply from: "../../commonHeader.gradle"
        project.apply from: "../../commonLocalRepo.gradle"
    }
}