vote up 0 vote down star

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 I have the application officially in beta.

Thanks.

flag

3 Answers

vote up 2 vote down check

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();
    }
link|flag
For some reason this isn't working for me. The "now" time is always wrong... like, 1 month ago wrong. – fiXedd Aug 29 at 3:26
The Java Calendar class month numbering start at 0, not 1. – Will Aug 29 at 3:47
So, 15th September would be: (2009, 8 , 15) Think thats correct. – Tom Aug 29 at 18:00
I believe that should be correct. – Will Aug 29 at 22:11
vote up 4 vote down

I think this is already answered here : http://stackoverflow.com/questions/995719/android-trial-applications

Well, not with any code examples

link|flag
vote up 1 vote down

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.

link|flag
This would be a great solution. I would love to do this but I am unsure on how to best program using web servers and android. – Tom Aug 4 at 23:49
@Tom that's because it's a pain in the ass. Look up AsyncTask. – fiXedd Aug 5 at 9:41
1  
It's actually fairly simple and straight forward. I have been playing around with this, and am going to write a blog(broschb.blogspot.com) post on this, and will update this once I have. But I used GoogleAppEngine and Restlet(restlet.org). Restlet has libraries for GAE, and Android. With this it is pretty simple to get something simple set up. I'll try and write something up in the next few days and post back. – broschb Aug 5 at 17:13
@broschb That will be amazing. I was thinking wouldn't it be cool to power such a system with the AppEngine. – Tom Aug 5 at 17:15
1  
I wrote an article on setting up the first part of this, with a small example for getting the app engine setup. I'll try to get the second part of the post done with the android integration this weekend, in the meantime you can see how simple it is to get GAE going. The post is here. broschb.blogspot.com/2009/08/… – broschb Aug 8 at 18:19
show 4 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.