목록안드로이드 #android #블루투스 #BLE #ACTION_FOUND (1)
IT recording...
[Android] BluetoothDevice.ACTION_FOUND / 블루투스 디바이스 찾기 해도 BroadcastReceiver에 들어가지 않는 오류
mBluetoothAdapter.startDiscovery(); IntentFilter discoverDevicesIntent = new IntentFilter(BluetoothDevice.ACTION_FOUND); registerReceiver(mBroadCastReceiver,discoverDevicesIntent); 를 통해 인텐트필터를 등록하고, 브로드캐스트에 해당 action을 받아도 broadcastlistener가 작동하지 않는 일이 발생했다. mBluetoothAdapter.ACTION_SCAN_MODE_CHANGED 이런거는 잘 되는데 왜 ACTION_FOUND만 안되는지 한참 고민하고 오타가 있는건가 찾았는데 답은 user에게 물어보는 별도의 권한을 줘야하는 것이었다. 1. manife..
Android
2020. 9. 9. 12:11