Skip to content

Commit

Permalink
Clear out .cxx dir during gradle clean task. Directory is DOTcxx, not…
Browse files Browse the repository at this point in the history
… just cxx

It's an additional build dir
  • Loading branch information
ViliusSutkus89 committed Jul 11, 2024
1 parent e7a86a5 commit 08825bd
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -170,3 +170,9 @@ dependencies {
implementation 'androidx.test.espresso:espresso-idling-resource:3.5.1'
implementation 'androidx.annotation:annotation:1.8.0'
}

tasks.named("clean") {
doLast {
delete(new File(projectDir, ".cxx"))
}
}

0 comments on commit 08825bd

Please sign in to comment.