getSessionsUri
Returns the Uri that may be used to obtain all sessions created by the same application (and the same profile) as this session. It may be used to open the list of log sessions in the nRF Logger application or to obtain list of sessions using ContentProvider. Keep in mind that sessions with NUMBER equal to 0 are "date sessions". Date sessions are created each time a new session is being added by the application (and profile) in a new day. See Logger for more information.
Intent intent = new Intent(Intent.ACTION_VIEW, mLogSession.getSessionsUri());
startActivity(intent);
Content copied to clipboard
Return
The Uri for all sessions created by the app used to create this session ornull if the session Uri is invalid or the owner app data does not exist in thedatabase.