I’d like to add attrs.xml file in Android project > res > values.
How to set build settings in Uno or Fuse project?
I’d like to add attrs.xml file in Android project > res > values.
How to set build settings in Uno or Fuse project?
Hi jbvoice,
Add a uxl
file next to your unoproj
file containing the following (I called mine extras.uxl
)
<Extensions Backend="CPlusPlus" Condition="Android">
<CopyFile Condition="Android" Name="attrs.xml" TargetName="app/src/main/res/values/attrs.xml" />
</Extensions>
Out of interest, why do you need to do this?
Hope this helps
I need to link 3rd party app.
It is needed to add it in 3rd party Lib.
Thanks for great help~!!
No problem, and thank-you for the info!