From 01cf8ee8bc65e0c0407db13f0c63aea57a529e1a Mon Sep 17 00:00:00 2001 From: Roman Tsisyk Date: Tue, 26 Sep 2023 10:41:09 +0300 Subject: [PATCH] [android] Mark NavigationService as exported=false This doesn't cause any issues, just not needed. From https://developer.android.com/guide/topics/manifest/service-element: > Whether components of other applications can invoke the service or > interact with it. It's "true" if they can, and "false" if not. When > the value is "false", only components of the same application or > applications with the same user ID can start the service or bind to it. Signed-off-by: Roman Tsisyk --- android/app/src/main/AndroidManifest.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 2ddfcfe6e5..af2be0f1d2 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -854,7 +854,7 @@