feat: refactor input source handling and add audio input service
This commit is contained in:
@@ -7,13 +7,27 @@ allprojects {
|
||||
}
|
||||
|
||||
rootProject.buildDir = "../build"
|
||||
|
||||
subprojects {
|
||||
project.buildDir = "${rootProject.buildDir}/${project.name}"
|
||||
}
|
||||
|
||||
subprojects {
|
||||
project.evaluationDependsOn(":app")
|
||||
}
|
||||
|
||||
subprojects {
|
||||
if (project.name != "app") {
|
||||
project.afterEvaluate {
|
||||
if (project.hasProperty("android")) {
|
||||
project.android {
|
||||
compileSdk 36
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
tasks.register("clean", Delete) {
|
||||
delete rootProject.buildDir
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user