feat : add example project for testing plugin.

This commit is contained in:
Jerry Hanks
2018-09-16 21:39:18 +01:00
parent 478965f2c3
commit ebda4a59d3
64 changed files with 1595 additions and 2 deletions

View File

@@ -0,0 +1,29 @@
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.4'
}
}
allprojects {
repositories {
google()
jcenter()
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(':app')
}
task clean(type: Delete) {
delete rootProject.buildDir
}