Ejemplo n.º 1
0
  @Override
  protected void onDestroy() {
    super.onDestroy();
    unregisterBroadcast();

    // stop scanning when the app closes
    if (bstacInstance != null) {
      try {
        bstacInstance.stopRangingBeacons();
      } catch (MSException e) {
        // handle for older devices
        e.printStackTrace();
      }
    }
  }