Skip to content

Commit

Permalink
Trying to fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
danny committed Feb 6, 2025
1 parent 7865f44 commit c9f9cb4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions macless_haystack/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ allprojects {
}
}

rootProject.layout.buildDirectory = '../build'
rootProject.buildDir = '../build'
subprojects {
project.layout.buildDirectory = "${rootProject.layout.buildDirectory}/${project.name}"
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(':app')
}

tasks.register("clean", Delete) {
delete rootProject.layout.buildDirectory
delete rootProject.buildDir
}

0 comments on commit c9f9cb4

Please sign in to comment.