Skip to content Skip to sidebar Skip to footer

Execution Failed For Task ':app:processDebugResources'. > Android Resource Linking Failed

I'm running react-native run-android and during the build this is the error I get. I'm using the latest version of android studio. A fresh example project I started with react-nati

Solution 1:

From your error it is telling you that you are using the following resource mipmap/ic_notif in your AndroidManifest.xml but it cannot find it in your res folder.

You should check that names and references that you are using for your resources. Specifically the one that you are probably using for notifications.

Also check that your close tags are correct in your AndroidManifest.xml as a missed placed > can cause errors.


Post a Comment for "Execution Failed For Task ':app:processDebugResources'. > Android Resource Linking Failed"