Skip to content

Commit

Permalink
chore: revert to deprecated buildDir
Browse files Browse the repository at this point in the history
  • Loading branch information
sboh1214 committed Dec 28, 2023
1 parent de6d9c5 commit b4e5d17
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ allprojects {
}
}

rootProject.layout.buildDirectory = '../build'
rootProject.buildDir = '../build'
subprojects {
project.layout.buildDirectory = "${rootProject.layout.buildDirectory}/${project.name}"
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
afterEvaluate {
Expand All @@ -46,5 +46,5 @@ subprojects {
}

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

0 comments on commit b4e5d17

Please sign in to comment.