I am trying to test a sample project called Android.Routing.Offline from OsmSharp.Samples in Github.
After two taps on the screen (the first one gets just the GeoCoordinate) I get a ProtoBuf.ProtoException in the Router.cs
private static IBasicRouterDataSource<CHEdgeData> _graph;
    public static void Initialize()
        {
            var routingSerializer = new CHEdgeDataDataSourceSerializer();
            _graph = routingSerializer.Deserialize(
                Assembly.GetExecutingAssembly().GetManifestResourceStream(@"Android.Routing.Offline.kempen-big.contracted.mobile.routing"));
        }
    public static Route Calculate(GeoCoordinate from, GeoCoordinate to)
            {
                try
                {
                    lock(_graph)
                    {
                        var router = Router.CreateCHFrom(_graph, new CHRouter(), new OsmRoutingInterpreter());
                        // The exception happens here below
                        var fromResolved = router.Resolve(Vehicle.Car, from); 
                        var toResolved = router.Resolve(Vehicle.Car, to);
                        if(fromResolved != null && toResolved !=null)
                        {
                            return router.Calculate(Vehicle.Car, fromResolved, toResolved);
                        }
                    }
                }
                catch(Exception ex)
                {
                    OsmSharp.Logging.Log.TraceEvent("Router", OsmSharp.Logging.TraceEventType.Critical, "Unhandled exception occured: {0}", ex.ToString());
                }
                return null;
            }
And the exception:
  > {ProtoBuf.ProtoException: Invalid wire-type; this usually means you
    > have over-written a file without truncating or setting the length; see
    > http://stackoverflow.com/q/2152978/23354  at
    > ProtoBuf.ProtoReader.ReadSingle () ...
I didnt overwrite the file (kempen-big.contracted.mobile.routing) just added it as a linked file in the project. Any ideas how I can solve this issue?
 
    