Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to stabilize Android Resource.designer.cs file

We are building a Xamarin forms app and every time any of the developers check in code it seems there are always changes being made to the Android Resources.designer.cs file. What is it that controls the automatic updates to that file? What do I need to stabilize in our dev environments across our developer machines to prevent that from aways getting different updates?

like image 541
webwires Avatar asked Oct 21 '25 18:10

webwires


1 Answers

You can safely add the file to .gitignore , in Xamarin sample repo, they have the resource.designer file in gitignore too, https://github.com/xamarin/xamarin-forms-samples/blob/master/.gitignore

like image 84
Visual Sharp Avatar answered Oct 24 '25 09:10

Visual Sharp