diff --git a/app/build.gradle b/app/build.gradle
index ba28552a4786eb48c21082915f39641e4604587b..631db4121c5d414d820f805394a90b62e078675c 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -5,7 +5,6 @@ apply plugin: 'androidx.navigation.safeargs.kotlin'
 apply plugin: 'kotlin-kapt'
 apply plugin: 'dagger.hilt.android.plugin'
 
-def splitApks = !project.hasProperty("noSplits")
 
 android {
     compileSdk rootProject.ext.sdk_version
@@ -20,26 +19,18 @@ android {
 
         testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
 
-        if (project.hasProperty("noSplits")) {
-            ndk {
-                (project.properties["ABI_FILTERS"] as String).split(';').each {
-                    abiFilters.add(it)
-                }
-            }
-        }
     }
 
-    if (splitApks) {
-        splits {
-            abi {
-                enable true
-                reset()
-                include "x86", "x86_64", "arm64-v8a", "armeabi-v7a"
-                universalApk false
-            }
+    splits {
+        abi {
+            enable true
+            reset()
+            include "x86", "x86_64", "arm64-v8a", "armeabi-v7a"
+            universalApk false
         }
     }
 
+
     buildFeatures {
         viewBinding true
         buildConfig true