diff options
Diffstat (limited to 'java/AndroidManifest.xml.in')
| -rw-r--r-- | java/AndroidManifest.xml.in | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/java/AndroidManifest.xml.in b/java/AndroidManifest.xml.in index b680137a9d0..74f69d2a8e5 100644 --- a/java/AndroidManifest.xml.in +++ b/java/AndroidManifest.xml.in | |||
| @@ -62,8 +62,10 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. --> | |||
| 62 | android:theme="@android:style/Theme" | 62 | android:theme="@android:style/Theme" |
| 63 | android:debuggable="true" | 63 | android:debuggable="true" |
| 64 | android:extractNativeLibs="true"> | 64 | android:extractNativeLibs="true"> |
| 65 | |||
| 65 | <activity android:name="org.gnu.emacs.EmacsActivity" | 66 | <activity android:name="org.gnu.emacs.EmacsActivity" |
| 66 | android:launchMode="singleTop" | 67 | android:launchMode="singleTop" |
| 68 | android:windowSoftInputMode="adjustResize" | ||
| 67 | android:configChanges="orientation|screenSize|screenLayout|keyboardHidden"> | 69 | android:configChanges="orientation|screenSize|screenLayout|keyboardHidden"> |
| 68 | <intent-filter> | 70 | <intent-filter> |
| 69 | <action android:name="android.intent.action.MAIN" /> | 71 | <action android:name="android.intent.action.MAIN" /> |
| @@ -73,8 +75,18 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. --> | |||
| 73 | </activity> | 75 | </activity> |
| 74 | 76 | ||
| 75 | <activity android:name="org.gnu.emacs.EmacsMultitaskActivity" | 77 | <activity android:name="org.gnu.emacs.EmacsMultitaskActivity" |
| 78 | android:windowSoftInputMode="adjustResize" | ||
| 76 | android:configChanges="orientation|screenSize|screenLayout|keyboardHidden"/> | 79 | android:configChanges="orientation|screenSize|screenLayout|keyboardHidden"/> |
| 77 | 80 | ||
| 81 | <activity android:autoRemoveFromRecents="true" | ||
| 82 | android:label="Emacs options" | ||
| 83 | android:name=".EmacsPreferencesActivity"> | ||
| 84 | <intent-filter> | ||
| 85 | <action android:name="android.intent.action.APPLICATION_PREFERENCES" /> | ||
| 86 | <category android:name="android.intent.category.DEFAULT" /> | ||
| 87 | </intent-filter> | ||
| 88 | </activity> | ||
| 89 | |||
| 78 | <service android:name="org.gnu.emacs.EmacsService" | 90 | <service android:name="org.gnu.emacs.EmacsService" |
| 79 | android:directBootAware="false" | 91 | android:directBootAware="false" |
| 80 | android:enabled="true" | 92 | android:enabled="true" |