Android 근처 기기 권한이 기본으로 요청되는 문제
해결 방법
Android 빌드에서 Unity로 bHaptics 디바이스를 사용하려면 Bluetooth 권한(Near by devices)이 필요합니다.
bHaptics SDK2에서는 초기화 시 Bluetooth 권한을 요청합니다.
빌드된 앱이 실행되자마자 Bluetooth 권한(Near by devices) 대화 상자가 나타나는 것을 방지하려면, **"Assets/Bhaptics/SDK2/Scripts/Core/BhapticsSDK2.cs"**에서 "autoRequestBluetoothPermission" 변수의 값을 false로 설정하면 됩니다.

public class BhapticsSDK2 : MonoBehaviour
{
private static BhapticsSDK2 instance;
[Header("Only for PC")]
[Tooltip("If bHaptics Player(PC) is not turned on when this program starts, it automatically runs bHaptics Player.")]
[SerializeField] private bool autoRunBhapticsPlayer = false;
// If you do not want bHapticsSDK2 to request Bluetooth permission when initialized,
// change the value to false.
private bool autoRequestBluetoothPermission = true;
private BhapticsSettings bhapticsSettings;
// ...
}