Android: Mark android:exported as per Android 12 guidelines

I cannot upload a new APK if I don't do this.
This commit is contained in:
Vishesh Handa
2022-01-18 10:02:19 +01:00
parent d1c88f3371
commit 1e6c8544c1

View File

@ -26,7 +26,8 @@ SPDX-License-Identifier: Apache-2.0
android:theme="@style/LaunchTheme"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density"
android:hardwareAccelerated="true"
android:windowSoftInputMode="adjustResize">
android:windowSoftInputMode="adjustResize"
android:exported="false">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>