测试Android LVL,无网络时许可证检查总是失败

发布于 2024-11-27 14:19:41 字数 410 浏览 0 评论 0原文

我正在我的应用程序中测试 Android 许可证验证库(LVL)。我的实现目前还很基础。我没有修改该库,并且我正在使用 ServerManagedPolicy。我将我的开发者帐户设置为始终返回许可。我正在我的物理设备上进行测试,并使用我的开发者帐户在设备上登录。我的应用程序的一个版本存在于 Android 市场上,但其中还没有 LVL。我的应用程序在启动时检查许可证。

到目前为止,它似乎运行良好,但有一个例外。当应用程序在没有网络连接(飞行模式)时尝试检查许可证时,许可证检查始终失败。我的理解是,使用 ServerManagedPolicy,许可证响应应该被缓存,这样一次许可证检查失败就不会禁用该应用程序。这是不正确的吗?

我知道我可以在检查许可证之前检查网络连接,然后自己决定容忍多少次故障,但我认为 ServerManagedPolicy 应该自动处理所有这些。

i'm testing the android license verification library (LVL) in my app. my implementation is currently bone-stock. i haven't modified the library, and i'm using the ServerManagedPolicy. i have my developer account set to return LICENSED all the time. i'm testing on my physical device, and am signed in on the device with my developer account. a version of my app exists on the android market, but it does not have the LVL in it yet. my app checks the license at startup.

so far, it seems to work fine, with one exception. when the app attempts to check the license when there is no network connectivity (airplane mode), the license check always fails. my understanding is that with the ServerManagedPolicy, the license response is supposed to be cached, so that one license check failure isn't going to disable the app. is this incorrect?

i know i could check for network connectivity before checking the license, and then decide for myself how many failures to tolerate, but i thought that the ServerManagedPolicy is supposed to handle all that automatically.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

寂寞美少年 2024-12-04 14:19:41

有两种方法检查 LVL:

  1. 每次 (StrictPolicy)
  2. 偶尔过期 (ServerManagedPolicy)

我建议您使用 ServerManagedPolicy;我希望您使用 StrictPolicy。此外,您可能只想检查连接并允许访问,具体取决于您的应用程序是什么及其工作方式。

另一种需要记住的可能性是 ServerManagedPolicy 仅缓存一小段时间 在测试场景中。部署后,您可能会没事。

There are two ways to check for LVL:

  1. Every time (StrictPolicy)
  2. Occasionally with expiration (ServerManagedPolicy)

I recommend you go with ServerManagedPolicy; I expect you are using StrictPolicy. Also, you may want to simply check for connectivity and allow access depending on what your app is and how it works.

Another possibility to keep in mind is that ServerManagedPolicy only caches for a short period of time in test scenarios. Once you deploy you may be fine.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文