From a749ade5d70b0ee2db7f88e0135252c80e7c568b Mon Sep 17 00:00:00 2001 From: Ryan Simon Date: Thu, 27 Jan 2022 00:16:30 -0800 Subject: [PATCH] Fix issue where Android app is not launchable (#1758) Launcher `Activity` should have `android:exported` attributes set to `true` so that app launchers have permission to launch the `Activity`. Check official docs for more information: https://developer.android.com/guide/topics/manifest/activity-element#exported --- examples/todoapp/android/src/main/AndroidManifest.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/todoapp/android/src/main/AndroidManifest.xml b/examples/todoapp/android/src/main/AndroidManifest.xml index 28cedb4399..269bd54e17 100755 --- a/examples/todoapp/android/src/main/AndroidManifest.xml +++ b/examples/todoapp/android/src/main/AndroidManifest.xml @@ -17,7 +17,7 @@ + android:exported="true">