From a1e6ae5dcc8ec830622dba695f493c517090acc1 Mon Sep 17 00:00:00 2001 From: Mike Hardy Date: Fri, 25 Oct 2024 21:19:28 -0500 Subject: [PATCH] fix(android): set all services / activities to exported=false All of our services and receivers either receive system broadcasts or Intents / PendingIntents from ourselves (internal use, in other words) so they do not need to be exported --- android/src/main/AndroidManifest.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/android/src/main/AndroidManifest.xml b/android/src/main/AndroidManifest.xml index 04a32ae9..fcefc0fa 100644 --- a/android/src/main/AndroidManifest.xml +++ b/android/src/main/AndroidManifest.xml @@ -25,7 +25,7 @@ android:excludeFromRecents="true" android:taskAffinity="" android:theme="@android:style/Theme.Translucent.NoTitleBar" - android:exported="true" /> + android:exported="false" /> + android:exported="false">