Titanium Android Service to trigger daily at 9am?

You must Login before you can answer or comment on any questions.

Hey folks... I made an intent and started a service in titanium. Service runs fine with constant interval of 4000 milliseconds. How can i specify my service intent to trigger daily at 9am instead after every 4 seconds? Following is my code

var intent = Ti.Android.createServiceIntent({
        url : 'ExampleService.js'
    });
    intent.putExtra('interval', 4000);
    Ti.Android.startService(intent);
using ti sdk 2.0.2 with android 2.3.3

Your Answer

Think you can help? Login to answer this question!