Just upgraded from Android Studio 3.2.1 to 3.3. Previously my project - targeting SDK v28
- built without problems, now I get this build error:
- What went wrong: Execution failed for task ':app:processDebugResources'.
Android resource linking failed C:\app\src\main\res\mipmap-anydpi-v25\ic_launcher_round.xml: error: <adaptive-icon> elements require a sdk version of at least 26.
error: failed linking file resources.
Obviously, I have an <adaptive-icon>
resource in the mipmap-anydpi-v25
folder.
So, which AS version handles this correctly; 3.2.1 or 3.3? Should I remove my v25
icon? I thought Lollipop had support for this type of icons...
targetSdkVersion 28
in my gradle file. Also updated the v28 SDK to revision 6. Still same problem... – l33tcompileSdkVersion 28
as well. – l33t