Merge ae098bfb357f5a5571a95235658f6db7ac9bfa58 on remote branch
Change-Id: I7e12ce747f3bf2232d4901613ef9df98e723d220
diff --git a/packages_apps_bluetooth_ext/src/avrcp/Avrcp_ext.java b/packages_apps_bluetooth_ext/src/avrcp/Avrcp_ext.java
index e66b164..f8005cb 100644
--- a/packages_apps_bluetooth_ext/src/avrcp/Avrcp_ext.java
+++ b/packages_apps_bluetooth_ext/src/avrcp/Avrcp_ext.java
@@ -3980,16 +3980,15 @@
mPackageManager.queryIntentServices(intent, PackageManager.MATCH_ALL);
for (ResolveInfo info : playerList) {
- Log.d(TAG, "Fetch the displayName of package - start");
- CharSequence displayName = info.loadLabel(mPackageManager);
- Log.d(TAG, "Fetch the displayName of package - end");
- String displayableName =
- (displayName != null) ? displayName.toString():new String();
String serviceName = info.serviceInfo.name;
String packageName = info.serviceInfo.packageName;
- Log.d(TAG, "svc " + serviceName + " and pkg = " + packageName);
+ Log.d(TAG, "Fetch the displayName of package - start");
+ String displayName = getAppLabel(packageName);
+ if (displayName == null) displayName = new String();
+ Log.d(TAG, "Fetch the displayName of package -" + displayName + " end");
+ Log.d(TAG, "svc " + serviceName + " pkg " + packageName);
BrowsePlayerInfo_ext currentPlayer =
- new BrowsePlayerInfo_ext(packageName, displayableName, serviceName);
+ new BrowsePlayerInfo_ext(packageName, displayName, serviceName);
mBrowsePlayerInfoList.add(currentPlayer);
MediaPlayerInfo_ext playerInfo = getMediaPlayerInfo(packageName);
MediaController controller =
diff --git a/system_bt_ext/bta/tws_plus/ag/bta_ag_twsp_sco.cc b/system_bt_ext/bta/tws_plus/ag/bta_ag_twsp_sco.cc
index 849aa1c..4a22347 100644
--- a/system_bt_ext/bta/tws_plus/ag/bta_ag_twsp_sco.cc
+++ b/system_bt_ext/bta/tws_plus/ag/bta_ag_twsp_sco.cc
@@ -264,8 +264,13 @@
twsp_select_microphone(get_other_twsp_scb(p_scb->peer_addr), p_scb);
}
/* create sco connection to peer */
- bta_ag_create_sco(p_scb, true);
- p_sco->state = BTA_AG_SCO_OPENING_ST;
+ if (bta_ag_create_sco(p_scb, true)) {
+ p_sco->state = BTA_AG_SCO_OPENING_ST;
+ } else {
+ APPL_TRACE_WARNING("%s: create sco connection failed", __func__);
+ p_sco->state = BTA_AG_SCO_LISTEN_ST;
+ bta_ag_cback_sco(p_scb, BTA_AG_AUDIO_CLOSE_EVT);
+ }
break;
case BTA_AG_SCO_CONN_CLOSE_E:
//SCO failed back to LISTEN