sschaub

Results 4 comments of sschaub

Most of the errors seem to be related to MvvmCross. See snip from the attached log: ``` 7>C:\dev\XamarinMediaManager\Samples\ElementPlayer.Core\ViewModels\BaseViewModel.cs(9,30,9,45): error CS0246: The type or namespace name 'IMvxLogProvider' could not be found...

I was able to get the project to build by changing the MvvmCross package versions from 8.0.2 to 7.1.2.

I recently encountered this same issue. The problem and the solution is referenced in other issues here, such as #344. Namely, you have to follow the procedure in the README...

I was able to write latitude/longitude values this way: ``` image.Properties.Set(ExifTag.GPSLatitude, 38f, 54f, 36f); image.Properties.Set(ExifTag.GPSLatitudeRef, GPSLatitudeRef.North); image.Properties.Set(ExifTag.GPSLongitude, 77f, 0f, 53f); image.Properties.Set(ExifTag.GPSLongitudeRef, GPSLongitudeRef.West); image.Properties.Set(ExifTag.GPSAltitude, 2f); image.Properties.Set(ExifTag.GPSAltitudeRef, GPSAltitudeRef.AboveSeaLevel); ``` The latitude/longitude values...