Hi everyone,
I'm experiencing a problem after synchronizing a project from a repository located in bitbucket. An old version of a file is being executed.
After pressing on the option "Update solution" a file had conflicts that had to be solved and I decided to revert the changes to make the local file equal than the file that was stored in the remote repository.
Now I see both files to be equal because Xamarin studio says that "Both files are equal". However, when I run the Android app the old file is being executed. If a partner executes from his computer the new version runs correctly.
The only change between both versions is a call to a method that has changed.
old version
categoriesProductes = Funciones.obtindreCategoriesProductes ();
new version
categoriesProductes = Funciones.obtindreCategoriesProductesSenseNumProductes ();
Could anybody explain why the function Funciones.obtindreCategoriesProductes () is being called instead of the new version?
Thank you very much in advance.