mirror of
https://github.com/Divested-Mobile/DivestOS-Build.git
synced 2024-10-01 01:35:54 -04:00
439af0cc9d
Signed-off-by: Tavi <tavi@divested.dev>
66 lines
2.6 KiB
Diff
66 lines
2.6 KiB
Diff
From 45ee08b07a12600ead2f3a789d60094c9d886fb8 Mon Sep 17 00:00:00 2001
|
|
From: Kiran S <krns@google.com>
|
|
Date: Mon, 13 May 2024 05:49:06 +0000
|
|
Subject: [PATCH] Restrict USB poups while setup is in progress
|
|
|
|
Test: Cherry pick of http://ag/27094197
|
|
Bug: 294105066
|
|
(cherry picked from https://googleplex-android-review.googlesource.com/q/commit:2ce2e54a040342373e401f9c2e70035ede4e63ad)
|
|
(cherry picked from https://googleplex-android-review.googlesource.com/q/commit:ec96cc3e3a81d21f2249db381c10638bb307cf39)
|
|
Merged-In: I7d54534696fd73f3b94c5b4250142eed9341c5d8
|
|
Change-Id: I7d54534696fd73f3b94c5b4250142eed9341c5d8
|
|
---
|
|
.../usb/UsbProfileGroupSettingsManager.java | 21 +++++++++++++++++++
|
|
1 file changed, 21 insertions(+)
|
|
|
|
diff --git a/services/usb/java/com/android/server/usb/UsbProfileGroupSettingsManager.java b/services/usb/java/com/android/server/usb/UsbProfileGroupSettingsManager.java
|
|
index d7b6b5d0d36a2..de49091759df3 100644
|
|
--- a/services/usb/java/com/android/server/usb/UsbProfileGroupSettingsManager.java
|
|
+++ b/services/usb/java/com/android/server/usb/UsbProfileGroupSettingsManager.java
|
|
@@ -16,6 +16,8 @@
|
|
|
|
package com.android.server.usb;
|
|
|
|
+import static android.provider.Settings.Secure.USER_SETUP_COMPLETE;
|
|
+
|
|
import static com.android.internal.app.IntentForwarderActivity.FORWARD_INTENT_TO_MANAGED_PROFILE;
|
|
|
|
import android.annotation.NonNull;
|
|
@@ -42,6 +44,7 @@
|
|
import android.os.Environment;
|
|
import android.os.UserHandle;
|
|
import android.os.UserManager;
|
|
+import android.provider.Settings;
|
|
import android.service.usb.UsbProfileGroupSettingsManagerProto;
|
|
import android.service.usb.UsbSettingsAccessoryPreferenceProto;
|
|
import android.service.usb.UsbSettingsDevicePreferenceProto;
|
|
@@ -900,10 +903,28 @@ private void resolveActivity(Intent intent, UsbDevice device, boolean showMtpNot
|
|
return;
|
|
}
|
|
|
|
+ if (shouldRestrictOverlayActivities()) {
|
|
+ return;
|
|
+ }
|
|
+
|
|
// Start activity with registered intent
|
|
resolveActivity(intent, matches, defaultActivity, device, null);
|
|
}
|
|
|
|
+ private boolean shouldRestrictOverlayActivities() {
|
|
+ if (Settings.Secure.getIntForUser(
|
|
+ mContext.getContentResolver(),
|
|
+ USER_SETUP_COMPLETE,
|
|
+ /* defaultValue= */ 1,
|
|
+ UserHandle.CURRENT.getIdentifier())
|
|
+ == 0) {
|
|
+ Slog.d(TAG, "restricting usb overlay activities as setup is not complete");
|
|
+ return true;
|
|
+ }
|
|
+
|
|
+ return false;
|
|
+ }
|
|
+
|
|
public void deviceAttachedForFixedHandler(UsbDevice device, ComponentName component) {
|
|
final Intent intent = createDeviceAttachedIntent(device);
|
|
|