Skip to content

Commit

Permalink
feat: add stopSession and resumeSession to bugsnag interface
Browse files Browse the repository at this point in the history
  • Loading branch information
fractalwrench committed Feb 18, 2019
1 parent d031a9c commit 9e86464
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions sdk/src/main/java/com/bugsnag/android/Bugsnag.java
Original file line number Diff line number Diff line change
Expand Up @@ -678,6 +678,14 @@ public static void startSession() {
getClient().startSession();
}

public static boolean resumeSession() {
return getClient().resumeSession();
}

public static void stopSession() {
getClient().stopSession();
}

/**
* Get the current Bugsnag Client instance.
*/
Expand Down

0 comments on commit 9e86464

Please sign in to comment.