skip to Main Content

PCAndroidStudioProjectsTabLayoutappbuildintermediatespackaged_manifestsdebugAndroidManifest.xml:12: AAPT: error: resource mipmap/ic_launcher_round (aka com.example.tablayout:mipmap/ic_launcher_round) not found

3

Answers


  1. Check your AndroidManifest.xml and find property android:roundIcon. Then remove this line, it’s optional.

    In case if you need android:roundIcon, just create it with in-IDE tools (right-mouse-click on resources directory, then "New" -> "Image Asset")

    Login or Signup to reply.
  2. when you create your image assets make sure you choose debug mode or release mode. So make it a release mode and create your icon asset enter image description here

    Login or Signup to reply.
  3. Android build failed due to mipmap/launcher_icon missing or path change. without launcher_icon app not install . drag and drop app icon to mipmap & re-run ur app.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search