--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/build.gradle.kts Fri May 08 21:33:19 2020 -0400
@@ -0,0 +1,36 @@
+import com.geekorum.build.SourceLicenseCheckerPlugin
+import com.geekorum.build.configureAnnotationProcessorDeps
+import com.geekorum.build.setupGoogleContent
+
+plugins {
+ id("com.android.library") apply false
+ kotlin("android") apply false
+ kotlin("kapt") apply false
+}
+
+
+// some extra properties
+extra["compileSdkVersion"] = "android-29"
+
+allprojects {
+ repositories {
+ google().setupGoogleContent()
+ jcenter()
+ }
+ apply<SourceLicenseCheckerPlugin>()
+}
+
+subprojects {
+ group = "com.geekorum"
+ version = "0.0.1"
+
+ configureAnnotationProcessorDeps()
+}
+
+task("clean", type = Delete::class) {
+ doLast {
+ delete(buildDir)
+ }
+}
+
+