diff options
author | Sailesh Nepal <sail@google.com> | 2014-04-04 02:02:49 -0700 |
---|---|---|
committer | Sailesh Nepal <sail@google.com> | 2014-04-04 02:03:11 -0700 |
commit | 907f5bc6691b24a75e8ce903548029c6fa4addff (patch) | |
tree | 76b33b75811605c76053212bca2847a0feb31ee2 | |
parent | 6bc8e8b3258b0397f621db266464f75945a710c5 (diff) |
Temporarily disable handoff feature
Due to bugs 13800303 and 13800552 performing a handoff leaves
the device in a state where the user can't make any more WiFi
calls.
Disabling handoff until those two bugs are fixed.
Change-Id: Ia0ac8db740c9fda0a592d5b26d186c66149a5b9e
-rw-r--r-- | InCallUI/src/com/android/incallui/InCallServiceImpl.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/InCallUI/src/com/android/incallui/InCallServiceImpl.java b/InCallUI/src/com/android/incallui/InCallServiceImpl.java index 03d370972..8bd7e816b 100644 --- a/InCallUI/src/com/android/incallui/InCallServiceImpl.java +++ b/InCallUI/src/com/android/incallui/InCallServiceImpl.java @@ -138,7 +138,8 @@ public class InCallServiceImpl extends android.telecomm.InCallService { Log.v(this, "setHandoffEnabled: " + call + " isEnabled: " + isHandoffEnabled); if (null != call) { if (isHandoffEnabled) { - call.addCapabilities(CallCapabilities.CONNECTION_HANDOFF); + // TODO(sail): Enable handoff once http://b/13800303 and http://b/13800552 are + // fixed. } else { call.removeCapabilities(CallCapabilities.CONNECTION_HANDOFF); } |