From a5016c5895eb20c58adfd03498537e745cefd65b Mon Sep 17 00:00:00 2001 From: Leonel Zalegas Date: Fri, 19 Jul 2024 20:10:31 -0300 Subject: [PATCH] test --- .github/workflows/ci.yml | 2 ++ app/build.gradle.kts | 10 ++++++++++ 2 files changed, 12 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1ce79e3..821f9e7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -75,4 +75,6 @@ jobs: uses: reactivecircus/android-emulator-runner@v2 with: api-level: 29 + arch: x86_64 + profile: pixel_3a script: ./gradlew connectedCheck \ No newline at end of file diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 5cf3517..fc707cf 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -54,6 +54,16 @@ android { } } } + // Disable splits at the Android block level + splits { + abi { + isEnable = false + } + density { + isEnable = false + } + } + compileOptions { sourceCompatibility = JavaVersion.VERSION_1_8 targetCompatibility = JavaVersion.VERSION_1_8