user1337157
user1337157

Reputation: 61

Finish android activity via Cordova

I'm currently working on an Android Application using Phonegap/Cordova. I need to finish the current activity and go back to the previously active activity/app.

Is there an easy way to call the finish() method (of the Activity class) from my Javascript code using Cordova?

Thanks in advance.

Upvotes: 2

Views: 1294

Answers (1)

3pic
3pic

Reputation: 1219

On Android, You can use navigator.app.exitApp()

Upvotes: 1

Related Questions