refactir(gui): added flutter version with flutter_rust_bridge

This commit is contained in:
Patryk Hegenberg 2024-05-16 20:25:21 +02:00
parent f1e48f6d12
commit fbb181d95b
200 changed files with 11018 additions and 84 deletions

View file

@ -0,0 +1,18 @@
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
}