I am trying to create a release universal build apk on mac machine and wanted to exclude tvdpi drawable folder. But i am not able to do so, I have used the following in my build.gradle file:
splits {
density {
enable false
include "nodpi", "hdpi", "xhdpi", "xxhdpi", "xxxhdpi"
exclude "ldpi", "tvdpi"
}
}
My SDK tool version is 23.0.2 Gradle version : 2.0.0-alpha3
Please let me know how to fix it, am i missing anything here?