Skip to content

Commit 5a33a39

Browse files
touilleManncalexan
authored andcommitted
Fix missing android:exported attributes in AndroidManifest.xml (mandatory in Android >= 12).
1 parent 5bfc241 commit 5a33a39

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

samples/app/src/main/AndroidManifest.xml

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
android:roundIcon="@mipmap/ic_launcher_round"
1212
android:supportsRtl="true"
1313
android:theme="@style/AppTheme">
14-
<activity android:name=".MainActivity">
14+
<activity android:name=".MainActivity"
15+
android:exported="true">
1516
<intent-filter>
1617
<action android:name="android.intent.action.MAIN" />
1718

0 commit comments

Comments
 (0)