Using vector drawable as Android app icon
After creating an Android Studio 'Phone and Tablet' project using Material3 for Jetpack Compose, there appears to be a superfluous amount of image files created, despite the minimum API being 30 (Android 11). Why in the mipmap folder has a whole bunch of raster images been generated, when for years, developers have been encouraged to use vector drawables for their app icons? Even the XML files seem to be in a folder for API 26. Is that really necessary when an app targets API 30? What should...