summaryrefslogtreecommitdiff
path: root/build-system/integration-test/test-projects/projectWithClassifierDep/build.gradle
blob: 17c1c56ca424f650863254a2ed4afe3aa1052414 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
apply from: "../commonHeader.gradle"
buildscript { apply from: "../commonBuildScript.gradle" }

apply plugin: 'com.android.application'

android {
    namespace "com.android.test.ivyapp"
    compileSdkVersion libs.versions.latestCompileSdk.get().toInteger()
    buildToolsVersion = libs.versions.buildToolsVersion.get()
}

dependencies {
    api group: 'com.foo', name: 'sample', version: '1.0'
    androidTestImplementation group: 'com.foo', name: 'sample', version: '1.0', classifier: 'testlib'
}