From d615737a4882e0a2813bff9ac44202058a2c8695 Mon Sep 17 00:00:00 2001 From: Grant Black Date: Thu, 5 Sep 2024 14:28:13 -0400 Subject: [PATCH] move --- build.gradle | 16 ---------------- demo/build.gradle | 13 +++++++++++++ 2 files changed, 13 insertions(+), 16 deletions(-) diff --git a/build.gradle b/build.gradle index bc9ff46..98ed708 100644 --- a/build.gradle +++ b/build.gradle @@ -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 - } - } - } - } - } -} diff --git a/demo/build.gradle b/demo/build.gradle index 67f877d..ffe7b28 100644 --- a/demo/build.gradle +++ b/demo/build.gradle @@ -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 {