aboutsummaryrefslogtreecommitdiff
path: root/frontend/android/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/android/build.gradle')
-rw-r--r--frontend/android/build.gradle31
1 files changed, 31 insertions, 0 deletions
diff --git a/frontend/android/build.gradle b/frontend/android/build.gradle
new file mode 100644
index 000000000..f7eb7f63c
--- /dev/null
+++ b/frontend/android/build.gradle
@@ -0,0 +1,31 @@
+buildscript {
+ ext.kotlin_version = '1.7.10'
+ repositories {
+ google()
+ mavenCentral()
+ }
+
+ dependencies {
+ classpath 'com.android.tools.build:gradle:7.3.0'
+ classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
+ }
+}
+
+allprojects {
+ repositories {
+ google()
+ mavenCentral()
+ }
+}
+
+rootProject.buildDir = '../build'
+subprojects {
+ project.buildDir = "${rootProject.buildDir}/${project.name}"
+}
+subprojects {
+ project.evaluationDependsOn(':app')
+}
+
+tasks.register("clean", Delete) {
+ delete rootProject.buildDir
+}