mirror of
https://github.com/keymanapp/keyman.git
synced 2026-09-05 23:27:40 +00:00
Permission needed for Android 11 See https://developer.android.com/training/package-visibility/declaring#intent-filter-signature
67 lines
3.1 KiB
XML
67 lines
3.1 KiB
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
package="com.tavultesoft.kmea" >
|
|
<!-- Query other IME's for keyboard picker menu -->
|
|
<queries>
|
|
<intent>
|
|
<action android:name="android.view.InputMethod" />
|
|
</intent>
|
|
</queries>
|
|
|
|
<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:theme="@style/AppTheme" >
|
|
|
|
<!-- Have application handle initializing Sentry -->
|
|
<meta-data android:name="io.sentry.auto-init" android:value="false" />
|
|
|
|
<activity
|
|
android:name="com.tavultesoft.kmea.KeyboardPickerActivity"
|
|
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.tavultesoft.kmea.KeyboardInfoActivity"
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize"
|
|
android:label="@string/app_name"
|
|
android:theme="@style/AppTheme.Light.Dialog" >
|
|
</activity>
|
|
<activity
|
|
android:name="com.tavultesoft.kmea.KMKeyboardDownloaderActivity"
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize"
|
|
android:label=""
|
|
android:theme="@style/AppTheme.Light.Dialog">
|
|
</activity>
|
|
<activity
|
|
android:name="com.tavultesoft.kmea.ModelPickerActivity"
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize"
|
|
android:label="@string/app_name"
|
|
android:theme="@style/AppTheme.Light.Dialog">
|
|
</activity>
|
|
<activity
|
|
android:name="com.tavultesoft.kmea.ModelInfoActivity"
|
|
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.tavultesoft.kmea.KMHelpFileActivity"
|
|
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>
|