I have a large number of drawables in my app. If I use the same apk for both phones and tablets the apk size would be too large. Hence I am trying to create two different apks - one for phones and one for tablets. I am doing this on android studio in the gradle file. I have created two different flavors 'phone' and 'tablet' for the same.
I want to include only the drawable folder for the flavor 'phone' and I want to include the folders drawable-sw600dp and drawable-sw720dp for the flavor 'tablet'. How do I achieve this?