Skip to content

Commit

Permalink
move
Browse files Browse the repository at this point in the history
  • Loading branch information
grablack committed Sep 5, 2024
1 parent 5f5e36d commit d615737
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 16 deletions.
16 changes: 0 additions & 16 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -94,19 +94,3 @@ class ReplaceStringTask extends DefaultTask {

}
}

android {
testOptions {
androidTestOptions {
execution 'ANDROIDX_TEST_ORCHESTRATOR'
androidTest.all {
if (project.hasProperty('excludeTests')) {
def excludePattern = project.property('excludeTests')
filter {
excludeTestsMatching excludePattern
}
}
}
}
}
}
13 changes: 13 additions & 0 deletions demo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,19 @@ android {
excludes += '/META-INF/{AL2.0,LGPL2.1}'
}
}
testOptions {
androidTestOptions {
execution 'ANDROIDX_TEST_ORCHESTRATOR'
androidTest.all {
if (project.hasProperty('excludeTests')) {
def excludePattern = project.property('excludeTests')
filter {
excludeTestsMatching excludePattern
}
}
}
}
}
}

dependencies {
Expand Down

0 comments on commit d615737

Please sign in to comment.