Skip to content

Commit 08825bd

Browse files
Clear out .cxx dir during gradle clean task. Directory is DOTcxx, not just cxx
It's an additional build dir
1 parent e7a86a5 commit 08825bd

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

app/build.gradle

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,3 +170,9 @@ dependencies {
170170
implementation 'androidx.test.espresso:espresso-idling-resource:3.5.1'
171171
implementation 'androidx.annotation:annotation:1.8.0'
172172
}
173+
174+
tasks.named("clean") {
175+
doLast {
176+
delete(new File(projectDir, ".cxx"))
177+
}
178+
}

0 commit comments

Comments
 (0)