diff --git a/.github/workflows/run-check.yml b/.github/workflows/run-check.yml index d7540d20e..0df22a4c7 100644 --- a/.github/workflows/run-check.yml +++ b/.github/workflows/run-check.yml @@ -37,7 +37,7 @@ jobs: - name: Build and Run Check # Run checks while excluding release-build tests, which are not configured to work properly # with the Compose testing library. - run: ./gradlew check -x testStandardRelease -x testFdroidRelease koverXmlReportStandardDebug + run: ./gradlew check -x testStandardRelease -x testFdroidDebug -x testFdroidRelease koverXmlReportStandardDebug - name: Danger env: diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 9f7d06e28..40321d5b0 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -53,6 +53,7 @@ android { flavorDimensions += listOf("mode") productFlavors { create("standard") { + isDefault = true dimension = "mode" } create("fdroid") {