How to fix : Execution failed for task ':app:processDebugResources' - android

I'm currently working with Cordova CLI along with Android cmdline-tools, and I'm getting this error when I run cordova build to generate apk.
Execution failed for task ':app:processDebugResources'.
A failure occurred while executing com.android.build.gradle.internal.tasks.Workers$ActionFacade
Android resource linking failed
/home/user/.gradle/caches/transforms-2/files-2.1/1723263284390e5d17b6b8ac539aa999/core-1.7.0/res/values/values.xml:105:5-114:25: AAPT:
error: resource android:attr/lStar not found.
A couple of days ago was working perfectly but I just can't spot the issue.
What's happening ?
I'm still troubleshooting with this.
Any help is hugely appreciated.

the issue is in values.xml file where you have defined android:attr/lStar .
the resource directory is not able to find resource with the same so that the resource can not be found.
You can use this example for further reference.
A failure occurred while executing com.android.build.gradle.internal.tasks

Related

Execution failed for task ':app:processReleaseResources' AAPT: error: resource android:attr/lStar not found

I need help with a project I am working on, the thing is everything was working fine a few days back, but then I had to travel now when I try to run the command react-native run-android I received the following error
* What went wrong:
Execution failed for task ':app:processReleaseResources'.
> A failure occurred while executing com.android.build.gradle.internal.tasks.Workers$ActionFacade
> Android resource linking failed
C:\Users\sarat\.gradle\caches\transforms-2\files-2.1\b5c19e49f776b182a5792cfc47bb4d7e\core-1.7.0\res\values\values.xml:105:5-114:25: AAPT: error: resource android:attr/lStar not found.
AAPT: error: resource android:attr/lStar not found.
I suggest you to check your drawable folders by theme.

problem while executing com.android.build.gradle.internal.tasks.Workers$ActionFacade

I am building my project on android studio 4. I end up getting this error
A failure occurred while executing com.android.build.gradle.internal.tasks.Workers$ActionFacade
i tried to check out other people with a similar problem. And for their case the solution was to add org.gradle.jvmargs=-Xmx4608m but i already have org.gradle.jvmargs=-Xmx1536m
Here is my error log stack sample
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':app:mergeDebugJavaResource'.
> A failure occurred while executing com.android.build.gradle.internal.tasks.Workers$ActionFacade
> java.lang.IllegalArgumentException (no error message)
I am really not sure where the problem is, and the gradle version i use is 6.1.1 and even when i try to change the version, i still get the same error
Thanks in advance
Looking for the same thing....
Execution failed for task ':app:processReleaseResources'.
A failure occurred while executing com.android.build.gradle.internal.tasks.Workers$ActionFacade
Android resource linking failed
/home/circleci/code/app/src/main/res/layout/fragment_local.xml:374: AAPT: error: attribute anim_scale_factor (aka es.fiestasgranada.main:anim_scale_factor) not found.

Getting Task :react-native-custom-keyboard-kit:verifyReleaseResources FAILED when building app

I am trying to create a simple app with Custom Keyboard. So I used react-native-custom-keyboard-kit npm package. It has no error when the app running on debugging mode. But when I tried to build app, it occured error as below:
Task :react-native-custom-keyboard-kit:verifyReleaseResources FAILED
FAILURE: Build failed with an exception.
What went wrong:
Execution failed for task ':react-native-custom-keyboard-kit:verifyReleaseResources'.
A failure occurred while executing com.android.build.gradle.internal.tasks.Workers$ActionFacade
Android resource linking failed
/home/bipulroy/.gradle/caches/transforms-2/files-2.1/a4aa75ad6ccbe3ab81ae94031ca63766/appcompat-1.0.2/res/values-v26/values-v26.xml:5:5-8:13: AAPT: error: resource android:attr/colorError not found.
Have you linked the library natively?
Try this:
react-native link react-native-custom-keyboard-kit

flutter build apk --split-per-abi fails

Helllo I get this erros when I run flutter build apk --split-per-abi
I can't generate my apk. Can you help me please. thank you in advance.
FAILURE: Build failed with an exception.
What went wrong:
Execution failed for task ':moneytextformfield:verifyReleaseResources'
> A failure occurred while executing
com.android.build.gradle.internal.tasks.Workers$ActionFacade
> Android resource linking failed
C:\Users\bahal\.gradle\caches\transforms-2\files-
2.1\c82bf40584b9a53c31dba07a8a48f301\core-1.1.0\res\values\values.xml:142:5-
173:25: AAPT: erro
r: resource android:attr/fontVariationSettings not found.
C:\Users\
----------
bahal\.gradle\caches\transforms-2\files-
2.1\c82bf40584b9a53c31dba07a8a48f301\core-1.1.0\res\values\values.xml:142:5-
173:25: AAPT: erro
r: resource android:attr/ttcIndex not found.
I resolved the problem by removing the money textformfield dependency. Now I'm using the simple textFormField

Flutter - Error while buiiding the apk in Android Studio

The built failed likely due to AndroidX incompatibilities in a plugin.
The tool is about to try using Jetfier to solve the incompatibility.
I'm using Android Studio for flutter, while building apk, build failed with above exception.
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':path_provider:verifyReleaseResources'.
A failure occurred while executing com.android.build.gradle.internal.tasks.Workers$ActionFacade
Android resource linking failed
/Users/android/.gradle/caches/transforms-2/files-2.1/7faf2ad74a0b9932e38d86e684646e95/core-1.0.0/res/values/values.xml:57:5-88:25:
AAPT: error: resource android:attr/fontVariationSettings not found.
/Users/android/.gradle/caches/transforms-2/files-2.1/7faf2ad74a0b9932e38d86e684646e95/core-1.0.0/res/values/values.xml:57:5-88:25:
AAPT: error: resource android:attr/ttcIndex not found.
What is causing this? Any suggestions would be helpful.
Flutter Clean and update your package path_provider

Categories

Resources