Only bind to RESOLVE_EPHEMERAL_PACKAGE once.
am: 7765d7320d
Change-Id: I2ca3b6d7938a461a6fe2d591b74985908c2d07bc
This commit is contained in:
@@ -56,6 +56,7 @@ final class EphemeralResolverConnection {
|
|||||||
/** Intent used to bind to the service */
|
/** Intent used to bind to the service */
|
||||||
private final Intent mIntent;
|
private final Intent mIntent;
|
||||||
|
|
||||||
|
private volatile boolean mBindRequested;
|
||||||
private IEphemeralResolver mRemoteInstance;
|
private IEphemeralResolver mRemoteInstance;
|
||||||
|
|
||||||
public EphemeralResolverConnection(Context context, ComponentName componentName) {
|
public EphemeralResolverConnection(Context context, ComponentName componentName) {
|
||||||
@@ -111,8 +112,11 @@ final class EphemeralResolverConnection {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
mContext.bindServiceAsUser(mIntent, mServiceConnection,
|
if (!mBindRequested) {
|
||||||
Context.BIND_AUTO_CREATE | Context.BIND_FOREGROUND_SERVICE, UserHandle.SYSTEM);
|
mBindRequested = true;
|
||||||
|
mContext.bindServiceAsUser(mIntent, mServiceConnection,
|
||||||
|
Context.BIND_AUTO_CREATE | Context.BIND_FOREGROUND_SERVICE, UserHandle.SYSTEM);
|
||||||
|
}
|
||||||
|
|
||||||
final long startMillis = SystemClock.uptimeMillis();
|
final long startMillis = SystemClock.uptimeMillis();
|
||||||
while (true) {
|
while (true) {
|
||||||
|
|||||||
Reference in New Issue
Block a user