Merge "Changing apk name in the manifest and the corresponding packages." into tm-dev

This commit is contained in:
Baligh Uddin
2022-03-25 13:12:10 +00:00
committed by Android (Google) Code Review
3 changed files with 5 additions and 5 deletions

View File

@@ -47,10 +47,10 @@ public class BluetoothMaxConnectedAudioDevicesPreferenceController extends
try {
Resources res = context.getPackageManager().getResourcesForApplication(
"com.android.bluetooth");
"com.android.bluetooth.services");
mDefaultMaxConnectedAudioDevices = res.getInteger(res.getIdentifier(
"config_bluetooth_max_connected_audio_devices",
"integer", "com.android.bluetooth"));
"integer", "com.android.bluetooth.services"));
} catch (PackageManager.NameNotFoundException e) {
e.printStackTrace();
}