Merge "Be the current user to get A2DP proxy" into pi-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
022cf30d17
@@ -29,6 +29,7 @@ import android.os.Binder;
|
|||||||
import android.os.IBinder;
|
import android.os.IBinder;
|
||||||
import android.os.ParcelUuid;
|
import android.os.ParcelUuid;
|
||||||
import android.os.RemoteException;
|
import android.os.RemoteException;
|
||||||
|
import android.os.UserHandle;
|
||||||
import android.util.Log;
|
import android.util.Log;
|
||||||
|
|
||||||
import com.android.internal.annotations.GuardedBy;
|
import com.android.internal.annotations.GuardedBy;
|
||||||
@@ -261,7 +262,7 @@ public final class BluetoothA2dp implements BluetoothProfile {
|
|||||||
ComponentName comp = intent.resolveSystemService(mContext.getPackageManager(), 0);
|
ComponentName comp = intent.resolveSystemService(mContext.getPackageManager(), 0);
|
||||||
intent.setComponent(comp);
|
intent.setComponent(comp);
|
||||||
if (comp == null || !mContext.bindServiceAsUser(intent, mConnection, 0,
|
if (comp == null || !mContext.bindServiceAsUser(intent, mConnection, 0,
|
||||||
mContext.getUser())) {
|
UserHandle.CURRENT_OR_SELF)) {
|
||||||
Log.e(TAG, "Could not bind to Bluetooth A2DP Service with " + intent);
|
Log.e(TAG, "Could not bind to Bluetooth A2DP Service with " + intent);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user