Skip to content

Commit a1ed1c0

Browse files
authored
feat(AndroidManifest): explicitly define the activity attribute android:exported (#1372)
1 parent 05e3e3c commit a1ed1c0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

templates/project/AndroidManifest.xml

+2-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@
3737
android:launchMode="singleTop"
3838
android:theme="@style/Theme.AppCompat.NoActionBar"
3939
android:windowSoftInputMode="adjustResize"
40-
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|smallestScreenSize|screenLayout|uiMode">
40+
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|smallestScreenSize|screenLayout|uiMode"
41+
android:exported="true">
4142
<intent-filter android:label="@string/launcher_name">
4243
<action android:name="android.intent.action.MAIN" />
4344
<category android:name="android.intent.category.LAUNCHER" />

0 commit comments

Comments
 (0)