Ejemplo n.º 1
0
 public override void onDestroy()
 {
     if (SinchServiceInterface != null)
     {
         SinchServiceInterface.stopClient();
     }
     base.onDestroy();
 }
Ejemplo n.º 2
0
 private void stopButtonClicked()
 {
     if (SinchServiceInterface != null)
     {
         SinchServiceInterface.stopClient();
     }
     finish();
 }
Ejemplo n.º 3
0
 public override void onDestroy()
 {
     if (SinchServiceInterface != null)
     {
         SinchServiceInterface.removeMessageClientListener(this);
         SinchServiceInterface.stopClient();
     }
     base.onDestroy();
 }