25 lines
1.1 KiB
XML
25 lines
1.1 KiB
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
package="io.ente.photos">
|
|
|
|
<!-- Adding the following block to prevent the app from having multiple
|
|
launcher entries. We can remove this along with the `LAUNCHER` category from
|
|
main/AndroidManifest.xml once
|
|
https://github.com/flutter/flutter/issues/38965 is fixed. -->
|
|
<application>
|
|
<activity android:name=".MainActivity"
|
|
android:launchMode="singleTask"
|
|
android:theme="@style/LaunchTheme"
|
|
android:exported="true"
|
|
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
|
|
android:hardwareAccelerated="true"
|
|
android:windowSoftInputMode="adjustResize">
|
|
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
<category android:name="android.intent.category.LAUNCHER" tools:node="remove"/>
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
</manifest>
|