From a1ed1c0af7c6267f47e580e8850295202692f4ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=82=A8=E3=83=AA=E3=82=B9?= Date: Thu, 28 Oct 2021 17:29:55 +0900 Subject: [PATCH] feat(AndroidManifest): explicitly define the activity attribute android:exported (#1372) --- templates/project/AndroidManifest.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates/project/AndroidManifest.xml b/templates/project/AndroidManifest.xml index 21da8bfc..5edc2af6 100644 --- a/templates/project/AndroidManifest.xml +++ b/templates/project/AndroidManifest.xml @@ -37,7 +37,8 @@ android:launchMode="singleTop" android:theme="@style/Theme.AppCompat.NoActionBar" android:windowSoftInputMode="adjustResize" - android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|smallestScreenSize|screenLayout|uiMode"> + android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|smallestScreenSize|screenLayout|uiMode" + android:exported="true">