Initial import of gradle configuration
Change-Id: I9dc695c17889d01b2173f9b3a5e3fe76fb1362b8
Signed-off-by: Alexander Martinz <amartinz@shiftphones.com>
diff --git a/build.gradle b/build.gradle
new file mode 100644
index 0000000..e420429
--- /dev/null
+++ b/build.gradle
@@ -0,0 +1,27 @@
+// Top-level build file where you can add configuration options common to all sub-projects/modules.
+
+buildscript {
+
+ repositories {
+ google()
+ jcenter()
+ }
+
+ dependencies {
+ classpath 'com.android.tools.build:gradle:3.6.0'
+
+ // NOTE: Do not place your application dependencies here; they belong
+ // in the individual module build.gradle files
+ }
+}
+
+allprojects {
+ repositories {
+ google()
+ jcenter()
+ }
+}
+
+task clean(type: Delete) {
+ delete rootProject.buildDir
+}
diff --git a/settings.gradle b/settings.gradle
new file mode 100644
index 0000000..30e6696
--- /dev/null
+++ b/settings.gradle
@@ -0,0 +1,3 @@
+rootProject.name='CameraX-Extensions'
+include ':camerax-extensions'
+include ':sample'