Set MainActivity intent filter "exported" property to true

This commit is contained in:
CappielloAntonio 2021-07-21 16:48:52 +02:00
parent 41adc48619
commit b342d50026

View file

@ -18,7 +18,8 @@
android:usesCleartextTraffic="true">
<activity
android:name=".ui.activity.MainActivity"
android:windowSoftInputMode="adjustPan|adjustResize">
android:windowSoftInputMode="adjustPan|adjustResize"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />