如何对 Android 应用程序进行定时炸弹?

发布于 2024-07-29 19:11:13 字数 118 浏览 8 评论 0原文

大家好,有没有人有一个代码示例,说明如何对 Android 应用程序进行定时炸弹,使其在给定日期后无法运行?

我想发布一个“测试版”应用程序进行测试,但希望确保它仅在该应用程序正式处于测试版时才能工作。

Hello does anyone have a code example of how I can time bomb an Android application so It will not work after a given date?

I would like to release a "beta" application for testing but would like to make sure it will only work while the application is officially in beta.

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

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

发布评论

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

评论(2

千里故人稀 2024-08-05 19:11:13

我建议使用 Calendar 类并让您的应用程序检查当前日期与 OnResume 中的到期日期。

代码看起来像这样:

    protected void onResume()
    {   
        super.onResume();

        Calendar expirationDate = Calendar.getInstance();
        expirationDate.set(2009, 7, 3);  //hardcoded expiration date
        Calendar t = Calendar.getInstance();  //Calendar with current time/date
        if (t.compareTo(expirationDate) == 1)
           finish();
    }

I would suggest using the Calendar class and having your application checking the current date against your expiration date in your OnResume(s).

The code would look something like this:

    protected void onResume()
    {   
        super.onResume();

        Calendar expirationDate = Calendar.getInstance();
        expirationDate.set(2009, 7, 3);  //hardcoded expiration date
        Calendar t = Calendar.getInstance();  //Calendar with current time/date
        if (t.compareTo(expirationDate) == 1)
           finish();
    }
栀梦 2024-08-05 19:11:13

另外,根据您的应用程序,您可能希望让到期调用调用网络服务器,这样,如果您想延长或更改日期,它将是动态的,不会导致应用程序过早到期。 只是我的2分钱。

Also depending on your application, you may want to have the expiration call make a call to a webserver, that way if you wanted to extend or change the date, it would be dynamic and would not cause the applications to expire prematurely. Just my 2 cents.

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