본문 바로가기

BLE2

[안드로이드] 블루투스 서비스 에러 / Bluetooth Service Error 블루투스 BLE 어플 개발 도중 아래와 같은 Logcat 에러사항이 발생했다. InitConnectActivity has leaked ServiceConnection com.gastron.gfin.gfinder.InitConnectActivity$2@55400ce that was originally bound here 해당내용을 구글링 해본 결과 블루투스 서비스를 바인드 한 뒤 바인드를 해제하지 않은 상태에서 다시 바인드 할 때 이와같은 문제가 발생한다고 한다. 즉 onCreate 에서 서비스 바인드 Intent gattServiceIntent = new Intent(InitConnectActivity.this, BluetoothLeService.class); bindService(gattServiceI.. 2020. 3. 25.
[안드로이드/Android] BLE 연결실패 / ble connection fail 오늘은 안드로이드 스튜디오 어플 개발시 Bluetooth Le 에 대해 연결이 실패하는 경우에 대해 글을 남깁니다. 이상없이 Bluetooth Service의 mBluetoothService 를 아래와같이 연결합니다 mBluetoothService.connect(deviceAddress); 당연히 블루투스 연결 시도를 하고 이상이 없다면 연결이 될 것입니다. 그렇게 통신을 완료한 뒤에 블루투스의 접속을 끊어줍니다 다음연결을 위해서 mBluetoothService.disconnect(); 너무도 당연하게 이번에도 연결이 잘 해제 되었습니다. 하지만 그 이후에 재접속을 위해서 블루투스 연결을 시도합니다 mBluetoothService.connect(deviceAddress); 처음에 연결이 잘 되던게 이번에.. 2020. 3. 25.