After a month, launched Android studio and on syncing with Gradle, this error pops up. Rebuilding/cleaning the project does not works and shows the same error again.
I have tried to rebuilding/clean and invalidate/restart the project but nothing seems to be working. I have searched out on this site about the problem but yet again nothing seems to be working. Would be really great if someone helps me with this one because I am stuck and can`t provide update my app.
Android resource compilation failed
Output: E:\Play Store Listings\Notepedia\app\build\intermediates\incremental\mergeDebugResources\merged.dir\values\values.xml:2616: error: duplicate value for resource 'attr/pivotX' with config ''.
E:\Play Store Listings\Notepedia\app\build\intermediates\incremental\mergeDebugResources\merged.dir\values\values.xml:2616: error: resource previously defined here.
E:\Play Store
Listings\Notepedia\app\build\intermediates\incremental\mergeDebugResources\merged.dir\values\values.xml:2616: error: duplicate value for resource 'attr/pivotY' with config ''.
E:\Play Store Listings\Notepedia\app\build\intermediates\incremental\mergeDebugResources\merged.dir\values\values.xml:2616: error: resource previously defined here.
Command: C:\Users\Taseer.gradle\caches\transforms-1\files-1.1\aapt2-3.2.1-4818971-windows.jar\8dd90688e4f5a22b34a1a148f45c2455\aapt2-3.2.1-4818971-windows\aapt2.exe compile --legacy \
-o \
E:\Play Store Listings\Notepedia\app\build\intermediates\res\merged\debug \
E:\Play Store Listings\Notepedia\app\build\intermediates\incremental\mergeDebugResources\merged.dir\values\values.xml
Daemon: AAPT2 aapt2-3.2.1-4818971-windows Daemon #0
EDIT: This is where the error leads to: Image
EDIT 2: Link to download(File removed)
In my case I tried to implement new versiont of Constraint Layout(in gradle)
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-alpha3'
and I get this error. I dont want to edit any attribes, I do revert to stable version
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
And the error dessapears.
That helped me.
Find library that cause that conflict (just remove libraries dependencies one by one and sync gradle).
Go to External Libraries > "conflict library" > res > values
Open values.xml and find there an attribute with the conflict name (in that case it's 'pivotX') and refactor that name to any other.
I had this same issue and had to look through the beta changes. Found the problem has been fixed in beta8
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta8'
For future reference, I am posting the comment as anwer
pivot is already defined as view attribute. that might be the reason you are having this issue. try prefixing some label may be like transformPivotX and this might work. Do this for all the attribute you have in image shared.
Related
i'm trying to build an Android app referencing the androidx.legacy:legacy-support-v13 package, and unfortunately the AAPT2 link phase always fails for me with these three errors:
values.xml, line 4 — aapt2 link: resource 'color/primary_text_default_material_dark' has a conflicting value for configuration ().
values.xml, line 5 — aapt2 link: resource 'color/secondary_text_default_material_dark' has a conflicting value for configuration ().
values.xml, line 7 — aapt2 link: resource 'integer/cancel_button_image_alpha' has a conflicting value for configuration ().
these values are indeed duplicated, from resources in appcompat-1.4.1 and media-1.5.0
I'm not referencing either of these directly, but legacy-support-v13 pulls in appcompat-1.4.1, and that one in turn pulls in media-1.5.0, si i am assuming these two packages are supposed to be ab le to co-exist.
What could i be missing here?
ps: i am using my own build chain, cunning aapt2 compile and aapt2 link manually...
thanx!
Trying to build the app but have got the error: The error Confugure image asset1
Confugure image asset2
Confugure image asset3
ERROR:C:\Users\Alex\AndroidStudioProjects\Lm2\app\src\main\res\mipmap-anydpi-v26\ic_launcher_round.xml:3: AAPT: error: resource mipmap/ic_launcher_background (aka com.example.lm2:mipmap/ic_launcher_background) not found.
How can I resolve this?
I hope you have
put your launcher icons into the mipmap folder where they should always go.
added your adaptive icon to the app’s manifest.xml for “android:icon” (android:roundIcon) attribute
.
Fist hand try: Clean your project and Rebuild
Probable Issue reason: Malformed XML:
Solution:
Check if you have anything duplicated by mistake in your XML
Try Analyze > Inspect Code it will redirect you to the exact error.
I want to make a settings activity for an android app. I used the standard activity for the settings but I keep getting the error:
\.gradle\caches\transforms-2\files-2.1\e3ce7e7cf0568bf54350349961cc10db\preference-1.1.1\res\values\values.xml:257:5-336:25: AAPT: error: duplicate value for resource 'attr/defaultValue' with config ''.
I think it has something to do with the androidx.preference.PreferenceFragmentCompat because the error disappears when I remove the dependency on android.preference:preference:1.1.1. Do you know how to fix this?
I figured it out. The DevaultValue was already defined by me in the res/attr/ folder. deleting this value makes it work.
If you already have a field with defaultValue in attrs file, rename it and try rebuild it. It works
I'm trying to build AOSP for non - supported device (surnia - Moto E2 2015 LTE).
I solved lots of problems earlier but now I have one that I can't avoid. I saw a lot of people had that problem, but their was just warning...
What can I do? Or could you help me finding surnia device tree (but for stock AOSP)?
[100% 441/441] writing build rules ...
FAILED:
build/make/core/Makefile:28: error: overriding commands for target `out/target/product/surnia/system/vendor/lib/libHevcSwDecoder.so', previously defined at build/make/core/base_rules.mk:480
19:07:53 ckati failed with: exit status 1
#### failed to build some targets (01:22 (mm:ss)) ####
add this flag "BUILD_BROKEN_DUP_RULES := true" in your BoardConfig.mk this work for me
I've recently encountered a similar error. It's because of a duplicate entry in PRODUCT_COPY_FILES which both are trying to copy some file to the same destination out/target/product/surnia/system/vendor/lib/libHevcSwDecoder.so. This will cause en error.
For me, the duplicate entry was in the following file:
<AOSP_ROOT>/vendor/google_devices/<DEVICE_CODENAME>/<DEVICE_CODENAME>-vendor-blobs.mk
For you, I think you should be looking for surnia-vendor-blobs.mk. Open this file and find the PRODUCT_COPY_FILES entry that has the destination out/target/product/surnia/system/vendor/lib/libHevcSwDecoder.so, then you can remove it to resolve the error.
This is a workaround, unfortunately I couldn't figout out what's the root problem.
by the way, Welcome Peter to Stack Overflow!
This question already has answers here:
Duplicate value for resource 'attr/font' with config "
(14 answers)
Closed 3 years ago.
I am trying to create circular-shaped buttons for my first android app.
For that, I added the library as
compile 'com.cuboid:cuboidcirclebutton:1.0.5' in circlebutton/app/build.gradle
As I sync, I get errors. below is the log
Information:Gradle tasks [clean, :app:assembleDebug]
C:\Users\Amninder\.gradle\caches\transforms-1\files-1.1\appcompat-v7-26.1.0.aar\2d55d8c33dae479e599960c08d012b17\res\values\values.xml
Error:(246, 5) error: duplicate value for resource 'attr/font' with config ''.
Error:(246, 5) error: resource previously defined here.
C:\Users\Amninder\AndroidStudioProjects\circlebutton\app\build\intermediates\incremental\mergeDebugResources\merged.dir\values\values.xml
Error:(254) duplicate value for resource 'attr/font' with config ''.
Error:(240) resource previously defined here.
Error:java.util.concurrent.ExecutionException: com.android.tools.aapt2.Aapt2Exception: AAPT2 error: check logs for details
Error:Execution failed for task ':app:mergeDebugResources'.
Error: java.util.concurrent.ExecutionException: com.android.tools.aapt2.Aapt2Exception: AAPT2 error: check logs for details
Information:BUILD FAILED in 19s
Information:6 errors
Information:0 warnings
Information:See complete output in console`
Below is a list of things I tried and failed.
1.removing attr/font on line 254 > doing save all > clean project > rebuild project.
I was inspired by this youtube video - https://www.youtube.com/watch?v=dF0m_PG111g so checked in its comments section. First, the comment was the same error. So, check this guy's blog. So I got to know the error was because of adding the library only. So I searched on google for - how to add a custom library in android referred to this. opened it and there was no info. regarding the error, I am facing.
Saw another link on the video, from StackOverflow this time.here is the link. He says "After renaming the library attribute to something else (text font), all went good again." I also tried renaming the attr/font to attr/1txtfont but changes were not reflected at all.
Can anyone here please help me out on this?
You're using support library version 26 which defines attribute attr/font and the library defines the same attribute, this is what causes the error.
So you either use support library version < 26, for example: com.android.support:appcompat-v7:25.3.1. Or the library owner rename the attribute
Thank you so much for your valuable insight y.allam. For any person who faces such an error. Below are the elaborated changes.
In your file build.gradle, change compileSdkVersion to 25 , targetSdkVersion to 25
.
Now in the same file, as sorted out by y.allam, change the SDK version to com.android.support:appcompat-v7:25.3.1.
[