2015-02-03 10:13:11 +01:00
|
|
|
configurations {
|
|
|
|
android
|
|
|
|
}
|
|
|
|
|
|
|
|
task androidJar(type: Jar) {
|
|
|
|
appendix = "android"
|
|
|
|
from sourceSets.main.output
|
|
|
|
exclude("**/PlatformUtil.*")
|
|
|
|
}
|
|
|
|
|
|
|
|
artifacts {
|
|
|
|
android androidJar
|
2014-12-16 12:23:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2018-06-15 14:54:55 +02:00
|
|
|
testImplementation 'junit:junit:4.12'
|
|
|
|
testImplementation 'com.google.code.gson:gson:2.8.2'
|
|
|
|
testImplementation 'org.hamcrest:hamcrest-core:1.3'
|
|
|
|
|
|
|
|
implementation fileTree(dir: "libs", include: ["*.jar"])
|
2014-12-16 12:23:45 +01:00
|
|
|
}
|
2016-06-29 20:23:33 +02:00
|
|
|
|