From 4ae41025c91ebb43e8052421653d685e3f7c1a71 Mon Sep 17 00:00:00 2001 From: William Juan Date: Tue, 27 Sep 2022 08:59:59 +0800 Subject: [PATCH] add explicit android:exported on activity --- .../App_Resources/Android/src/main/AndroidManifest.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/angular-tutorial/App_Resources/Android/src/main/AndroidManifest.xml b/angular-tutorial/App_Resources/Android/src/main/AndroidManifest.xml index 05081f8..e1c822d 100644 --- a/angular-tutorial/App_Resources/Android/src/main/AndroidManifest.xml +++ b/angular-tutorial/App_Resources/Android/src/main/AndroidManifest.xml @@ -26,7 +26,8 @@ android:name="com.tns.NativeScriptActivity" android:label="@string/title_activity_kimera" android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|locale|uiMode" - android:theme="@style/LaunchScreenTheme"> + android:theme="@style/LaunchScreenTheme" + android:exported="true">