diff --git a/src/com/android/settings/wifi/tether/TetherService.java b/src/com/android/settings/wifi/tether/TetherService.java index 59027193ed5..8a557ba0c3e 100644 --- a/src/com/android/settings/wifi/tether/TetherService.java +++ b/src/com/android/settings/wifi/tether/TetherService.java @@ -119,7 +119,8 @@ public class TetherService extends Service { if (mExpectedProvisionResponseAction != null) unregisterReceiver(mReceiver); registerReceiver(mReceiver, new IntentFilter(responseAction), - android.Manifest.permission.TETHER_PRIVILEGED, null /* handler */); + android.Manifest.permission.TETHER_PRIVILEGED, null /* handler */, + Context.RECEIVER_EXPORTED); mExpectedProvisionResponseAction = responseAction; if (DEBUG) Log.d(TAG, "registerReceiver " + responseAction); }