I have this code in my Manifest file. The problem that I'm facing is that the icon is being displayed only in Android Lollipop (Api21, Asus Nexus Tab). I've tested in Oreo (Oppo A3S)and Android P (Samsung Galaxy S10+) but the icon is not being displayed. The images in the mipmap look fine though.
<application
android:name=".Application"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme"
tools:ignore="GoogleAppIndexingWarning">
Only a solid color (the background of the icon) is being displayed. Does this have something to do with the images in mipmap? because they look fine. Even the preview of the icon near the line numbers in the manifest looks fine.
I also observed that I just have a webp file in my mipmap-anydpi-v26
but other apps have 2 XML files, one for round and a normal one.