21 lines
702 B
Groovy
21 lines
702 B
Groovy
plugins {
|
|
id 'kotlin'
|
|
id 'java-test-fixtures'
|
|
}
|
|
|
|
def properties = new Properties()
|
|
def localProperties = rootProject.file("local.properties")
|
|
if (localProperties.exists()) {
|
|
properties.load(rootProject.file("local.properties").newDataInputStream())
|
|
} else {
|
|
properties.setProperty("sdk.dir", System.getenv("ANDROID_HOME"))
|
|
}
|
|
|
|
dependencies {
|
|
def androidVer = androidSdkVersion
|
|
api files("${properties.getProperty("sdk.dir")}/platforms/android-${androidVer}/android.jar")
|
|
|
|
kotlinFixtures(it)
|
|
testFixturesImplementation testFixtures(project(":core"))
|
|
testFixturesImplementation files("${properties.getProperty("sdk.dir")}/platforms/android-${androidVer}/android.jar")
|
|
} |