투케이2K

146. (TWOK/ERROR) [Android] Android Api 31 BluetoothAdapter.getDefaultAdapter deprecated 이슈 본문

투케이2K 에러관리

146. (TWOK/ERROR) [Android] Android Api 31 BluetoothAdapter.getDefaultAdapter deprecated 이슈

투케이2K 2023. 4. 28. 21:09

[환경 설정 및 설명]

프로그램 : AndroidStudio

설 명 : Android Api 31 BluetoothAdapter.getDefaultAdapter deprecated 이슈

 

[에러 원인]

1. Android 타겟 Api 설정 31 버전 이상 시 BluetoothAdapter.getDefaultAdapter deprecated 이슈 발생

 

[해결 방법]

1. 블루투스 매니저를 사용해 서비스 객체 획득 및 getAdapter 획득 실시

BluetoothManager bluetoothManager = (BluetoothManager) mContext.getSystemService(Context.BLUETOOTH_SERVICE);

BluetoothAdapter ble_Adapter = bluetoothManager.getAdapter();


 

반응형
Comments