How to set build settings in specific Android files.

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 :slight_smile:

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!