Skip to content

Commit

Permalink
Add 'cleanBuild' Gradle task to make sure that project is cleaned bet…
Browse files Browse the repository at this point in the history
…ween Jitpack builds
  • Loading branch information
Samuli Määttä committed Sep 7, 2023
1 parent 65c1cba commit fdb5bd0
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions sources/Android/android-communications/library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,13 @@ protobuf {
}
}

task cleanBuild(type: Delete) {
delete 'build/'
delete '.gradle/'
}

assemble.dependsOn cleanBuild

dependencies {
implementation 'io.reactivex.rxjava3:rxandroid:3.0.2'
implementation 'io.reactivex.rxjava3:rxjava:3.1.6'
Expand Down

0 comments on commit fdb5bd0

Please sign in to comment.