Murtuza Saifee
Murtuza Saifee

Reputation: 67

Blackberry: Kill an application

I want to kill an running application in blackberry, just like as task manager. Is there is any way to do that or any API available?

Thanks in advance.

Upvotes: 1

Views: 1584

Answers (2)

Suraj Air
Suraj Air

Reputation: 2113

call this method to kill a UiApplication....

public void killApp() {
      System.exit(0);
}

Upvotes: 1

Siva Charan
Siva Charan

Reputation: 18064

As per other forums, below are the information I found. Try this if it helps you

First Way: you might have to just do a hard boot. take the battery out if all fails.

Second Way:

Stop a job that is running

 1. In the BlackBerry® Administration Service, on the Devices menu, expand Deployment jobs.
 2. Click Manage deployment jobs.
 3. Search for the job that you want to stop.
 4. In the search results, click the ID of the job that you want to stop. You can only stop jobs with a Running status.
 5. Click Stop Current Execution.
 6. Click Yes - Stop Current Execution.

Stopping a job that is running

Upvotes: 0

Related Questions