VladMorzhanov
9/23/2017 - 2:41 PM

Android check is ble supported by device.

Android check is ble supported by device.

        if (!getPackageManager().hasSystemFeature(PackageManager.FEATURE_BLUETOOTH_LE)) {
            Toast.makeText(this, R.string.ble_not_supported, Toast.LENGTH_SHORT).show();
            finish();
        }