안드로이드 블루투스(Bluetooth) -블루투스를 사용하여 통신하려면 기기에서 지원되는지 확인하고, 지원되는 경우 활성화 해야한다. -블루투스가 지원되지 않는 경우 모든 블루투스 기능을 비활성화 해야한다. -블루투스 지원O, 비활성화 된경우 애플리케이션을 떠나지 않은 상태에서 블루투스를 활성화하도록 요철할 수 있다.(BluetoothAdapter) 1.BluetoothAdapter를 가져옵니다. val bluetoothAdapter: BluetoothAdapter? = BluetoothAdapter.getDefaultAdapter() if (bluetoothAdapter == null) { // Device doesn't support Bluetooth } 2.블루투스 활성화 블루투스 활성화를 요청하려..