mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-06 08:55:34 +00:00
80 lines
3.6 KiB
XML
80 lines
3.6 KiB
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
<!-- Query other IME's for keyboard picker menu -->
|
|
<queries>
|
|
<intent>
|
|
<action android:name="android.view.InputMethod" />
|
|
</intent>
|
|
</queries>
|
|
|
|
<queries>
|
|
<package android:name="com.android.webkit" />
|
|
<package android:name="com.google.android.ims" />
|
|
</queries>
|
|
|
|
<!-- https://developer.android.com/develop/ui/views/notifications/notification-permission#declare -->
|
|
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
|
|
<uses-permission android:name="android.permission.VIBRATE" />
|
|
|
|
<!-- Ensure these permissions aren't added by dependencies unless calling app intentionally adds them -->
|
|
<uses-permission android:name="android.permission.INTERNET" tools:node="remove" />
|
|
|
|
<application
|
|
android:resizeableActivity="false"
|
|
android:theme="@style/AppTheme" >
|
|
|
|
<!-- Have application handle initializing Sentry -->
|
|
<meta-data android:name="io.sentry.auto-init" android:value="false" />
|
|
|
|
<activity
|
|
android:name="com.keyman.engine.KeyboardPickerActivity"
|
|
android:exported="true"
|
|
android:launchMode="singleTask"
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize"
|
|
android:label="@string/app_name"
|
|
android:theme="@style/AppTheme.Light.Dialog" >
|
|
</activity>
|
|
<activity
|
|
android:name="com.keyman.engine.KeyboardInfoActivity"
|
|
android:exported="true"
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize"
|
|
android:label="@string/app_name"
|
|
android:theme="@style/AppTheme.Light.Dialog" >
|
|
</activity>
|
|
<activity
|
|
android:name="com.keyman.engine.KMKeyboardDownloaderActivity"
|
|
android:exported="true"
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize"
|
|
android:label=""
|
|
android:theme="@style/AppTheme.Light.Dialog">
|
|
</activity>
|
|
<activity
|
|
android:name="com.keyman.engine.ModelPickerActivity"
|
|
android:exported="true"
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize"
|
|
android:label="@string/app_name"
|
|
android:theme="@style/AppTheme.Light.Dialog">
|
|
</activity>
|
|
<activity
|
|
android:name="com.keyman.engine.ModelInfoActivity"
|
|
android:exported="true"
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize"
|
|
android:label="@string/app_name"
|
|
android:theme="@style/AppTheme.Light.Dialog" >
|
|
</activity>
|
|
|
|
<!-- Put other WebViewActivities in a separate process so the Keyboard WebView doesn't lag.
|
|
Ref https://stackoverflow.com/questions/40650643/timed-out-waiting-on-iinputcontextcallback-with-custom-keyboard-on-android -->
|
|
<activity
|
|
android:name="com.keyman.engine.KMHelpFileActivity"
|
|
android:exported="true"
|
|
android:process=":KMHelpFileActivity"
|
|
android:launchMode="singleTask"
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize"
|
|
android:label="@string/app_name"
|
|
android:theme="@style/Theme.AppCompat.Light.NoActionBar">
|
|
</activity>
|
|
|
|
</application>
|
|
|
|
</manifest>
|