From ce5e9a90421da9aaae06c6e150afe3e6c09df944 Mon Sep 17 00:00:00 2001 From: Leonid Pliushch Date: Fri, 19 Feb 2021 01:45:39 +0200 Subject: [PATCH] Revert "app: enable split apk builds" Not compatible with F-Droid. If you can fix F-Droid builds, send pull requests. For now I'm disabling this. This reverts commit a7eb17317837868f4ac8962dd48459c608ee3653. --- app/build.gradle | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 7f724714..e270eb47 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -25,14 +25,9 @@ android { cFlags "-std=c11", "-Wall", "-Wextra", "-Werror", "-Os", "-fno-stack-protector", "-Wl,--gc-sections" } } - } - splits { - abi { - enable true - - reset () - include 'x86', 'x86_64', 'armeabi-v7a', 'arm64-v8a' + ndk { + abiFilters 'x86', 'x86_64', 'armeabi-v7a', 'arm64-v8a' } }