You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've called Sensey.getInstance().stopWristTwistDetection(wristTwistListener) in onPause() and onStop(), and I've also called Sensey.getInstance().stop() in onDestroy(). Am I missing anything?
The text was updated successfully, but these errors were encountered:
@peter-rotacloud can you share more information like logcat logs which shows the sensey detection is happening even after your activity is closed. You are probably keeping it active somewhere, because technically if say you didnot call Sensey.getInstance().stop() in onDestroy() what you will be doing is leaking memory. The system anyways shuts down all functional execution for the activity as per the lifecycle of activity.
I've called
Sensey.getInstance().stopWristTwistDetection(wristTwistListener)
inonPause()
andonStop()
, and I've also calledSensey.getInstance().stop()
inonDestroy()
. Am I missing anything?The text was updated successfully, but these errors were encountered: