HERE SDK离线导航无效

时间:2016-03-10 16:52:06

标签: android sdk maps here-api

这里的情况是我连接到wifi,我的应用程序正在计算路线。它应该仍然有效,因为它支持离线导航。应该有一种方法可以强制SDK即使在线也能脱机工作。谢谢!

这是我得到的日志。

[Export]
public class SomeClient {
    public SomeClient([Import("x")]IDep dep) {}
}

[Export("x", typeof(IDep))]
public class X : IDep {}

[Export("y", typeof(IDep))]
public class Y : IDep {}

// in composition root:
using DryIoc.MefAttributedModel;

container = new Container().WithMefAttributedModel();

container.RegisterExports(
    typeof(SomeClient),
    typeof(X),
    typeof(Y));

container.Resolve<SomeClient>(); // will inject X

1 个答案:

答案 0 :(得分:0)

我在一周内一直为此工作,最后解决了这个问题。所以我在公司的网络下工作,因此非常没有效果。

所以我所做的是在WiFi设置下添加代理服务器,因为所有外部网络请求都应通过代理,否则会出现SSL错误。