diff options
Diffstat (limited to 'java/AndroidManifest.xml')
| -rw-r--r-- | java/AndroidManifest.xml | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/java/AndroidManifest.xml b/java/AndroidManifest.xml index 75aa5bdf409..06417017ae3 100644 --- a/java/AndroidManifest.xml +++ b/java/AndroidManifest.xml | |||
| @@ -31,13 +31,15 @@ | |||
| 31 | android:targetSdkVersion="28"/> | 31 | android:targetSdkVersion="28"/> |
| 32 | 32 | ||
| 33 | <application android:name="org.gnu.emacs.EmacsApplication" | 33 | <application android:name="org.gnu.emacs.EmacsApplication" |
| 34 | android:label="GNU Emacs" | 34 | android:label="Emacs" |
| 35 | android:hardwareAccelerated="true" | 35 | android:hardwareAccelerated="true" |
| 36 | android:supportsRtl="true" | 36 | android:supportsRtl="true" |
| 37 | android:theme="@android:style/Theme" | 37 | android:theme="@android:style/Theme" |
| 38 | android:debuggable="true" | 38 | android:debuggable="true" |
| 39 | android:extractNativeLibs="true"> | 39 | android:extractNativeLibs="true"> |
| 40 | <activity android:name="org.gnu.emacs.EmacsActivity"> | 40 | <activity android:name="org.gnu.emacs.EmacsActivity" |
| 41 | android:launchMode="singleTop" | ||
| 42 | android:configChanges="orientation|screenSize|screenLayout|keyboardHidden"> | ||
| 41 | <intent-filter> | 43 | <intent-filter> |
| 42 | <action android:name="android.intent.action.MAIN" /> | 44 | <action android:name="android.intent.action.MAIN" /> |
| 43 | <category android:name="android.intent.category.DEFAULT" /> | 45 | <category android:name="android.intent.category.DEFAULT" /> |
| @@ -45,6 +47,9 @@ | |||
| 45 | </intent-filter> | 47 | </intent-filter> |
| 46 | </activity> | 48 | </activity> |
| 47 | 49 | ||
| 50 | <activity android:name="org.gnu.emacs.EmacsMultitaskActivity" | ||
| 51 | android:configChanges="orientation|screenSize|screenLayout|keyboardHidden"/> | ||
| 52 | |||
| 48 | <service android:name="org.gnu.emacs.EmacsService" | 53 | <service android:name="org.gnu.emacs.EmacsService" |
| 49 | android:directBootAware="false" | 54 | android:directBootAware="false" |
| 50 | android:enabled="true" | 55 | android:enabled="true" |