Skip to content

Commit

Permalink
Disable incompatible tasks on release build
Browse files Browse the repository at this point in the history
  • Loading branch information
Goooler authored and yasanglass committed Aug 22, 2022
1 parent 9385111 commit 4c443fd
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,12 @@ allprojects {
}.configureEach {
notCompatibleWithConfigurationCache("https://github.com/RikkaApps/HiddenApiRefinePlugin/issues/9")
}

tasks.matching {
it.name.contains("collect*Dependencies") || it.name.contains("OssLicensesTask")
}.configureEach {
notCompatibleWithConfigurationCache("https://github.com/google/play-services-plugins/issues/206")
}
}

apply plugin: 'com.android.application'
Expand Down

0 comments on commit 4c443fd

Please sign in to comment.