Disable some unnecessary build features

This commit is contained in:
arkon 2021-11-07 09:20:13 -05:00
parent 55b64899f5
commit f28dd4f4de

View File

@ -28,7 +28,6 @@ android {
applicationId = "eu.kanade.tachiyomi"
minSdk = AndroidConfig.minSdk
targetSdk = AndroidConfig.targetSdk
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
versionCode = 71
versionName = "0.12.3"
@ -44,6 +43,8 @@ android {
ndk {
abiFilters += SUPPORTED_ABIS
}
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
splits {
@ -112,6 +113,11 @@ android {
buildFeatures {
viewBinding = true
// Disable some unused things
aidl = false
renderScript = false
shaders = false
}
lint {