Open farfromrefug opened 5 years ago
I have the same issue when nativescript-ui-gauge is used in an app with @triniwiz/nativescript-stripe. See https://github.com/triniwiz/nativescript-plugins/issues/27
Execution failed for task ':app:mergeDebugResources'.
Android resource compilation failed
C:\Users\Mike\.gradle\caches\transforms-2\files-2.1\0f279d52f241ddc1c70630baab066dcc\jetified-TNSGauge-release\res\values\values.xml:29:5-40:25: AAPT: error: duplicate value for resource 'attr/circleRadius' with config ''.
C:\Users\Mike\.gradle\caches\transforms-2\files-2.1\0f279d52f241ddc1c70630baab066dcc\jetified-TNSGauge-release\res\values\values.xml:29:5-40:25: AAPT: error: resource previously defined here.
@msn444 dont use gauge. you can get the same result with @nativescript-community/ui-canvas
Thanks @farfromrefug, but wouldn't that require me to code my own gauge using drawing primitives?
I was able to implement my gauge pretty easily using RadPieChart and it's coexisting with the stripe plugin ok now.
yes you are right. glad you found a solution !
I'm facing the same issue currently. @farfromrefug you mentioned that you managed to fix the issue by removing the radius attribute defined nativescript-ui-gauge. How did you actually achieve it? Changing values xml under platforms doesn't seem to solve the issue actually.
@deindesignpl no i dropped that plugin and do it with @nativescript-community/ui-canvas
I see, thank you for information 👍
I've the same issue with the ui-material-bottomsheet https://github.com/nativescript-community/ui-material-components/issues/258. There are any updates about it?
I have the same issue with NS-applozic-plugin
I have the same problem when using the plugin with "@nativescript-community/ui-material-tabs": "^5.2.20",
Trying to build an android app using android wear libraries and
nativescript-ui-gauge
won't compile. It's pretty simple to test. Addnativescript-ui-gauge
andnativescript-wear-os
to this app (any app should do). Then compile for android. You should end up with errors like this:I actually managed to fix the issue by removing the
radius
attribute definednativescript-ui-gauge
. Not sure why it is happening though