Reputation: 848
Whenever I make a change to the front end of my visual studio xamarin application it dosn't update on the application ran on the emulator. Furthermore the changes on the front end are not saved when close down the project and start it again.
So my .cs(backend) file changes are being saved but the .axml(Frontend) changes are not.
Upvotes: 1
Views: 1305
Reputation: 71
I had the same problem and I fixed it by deleting and recreating the Android emulator
Upvotes: 0
Reputation: 6462
Would propose deleting bin
and obj
folders, then clean and rebuild the solution. At the same time close the simulator to start a new deploy.
Can't image why "the changes on the front end are not saved when close down the project" though.. Looks like if you where saving to a remote location where files are not saved and you have changes only kept in memory.
Upvotes: 0