Merge "Don't allow contact sharing by default for device not recognized as carkit." into mnc-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
abea6dc466
@@ -808,7 +808,12 @@ public final class CachedBluetoothDevice implements Comparable<CachedBluetoothDe
|
|||||||
// The pairing dialog now warns of phone-book access for paired devices.
|
// The pairing dialog now warns of phone-book access for paired devices.
|
||||||
// No separate prompt is displayed after pairing.
|
// No separate prompt is displayed after pairing.
|
||||||
if (getPhonebookPermissionChoice() == CachedBluetoothDevice.ACCESS_UNKNOWN) {
|
if (getPhonebookPermissionChoice() == CachedBluetoothDevice.ACCESS_UNKNOWN) {
|
||||||
setPhonebookPermissionChoice(CachedBluetoothDevice.ACCESS_ALLOWED);
|
if (mDevice.getBluetoothClass().getDeviceClass()
|
||||||
|
== BluetoothClass.Device.AUDIO_VIDEO_HANDSFREE) {
|
||||||
|
setPhonebookPermissionChoice(CachedBluetoothDevice.ACCESS_ALLOWED);
|
||||||
|
} else {
|
||||||
|
setPhonebookPermissionChoice(CachedBluetoothDevice.ACCESS_REJECTED);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user