abouttreesummaryrefslogcommitdiff
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorJules Aguillon2023-03-28 11:22:17 +0200
committerJules Aguillon2023-03-28 11:22:17 +0200
commit35b4e442ab2e2b236e785f52dfa5d59439eb037e (patch)
tree96651e06a5b53f8e02771f5704464a3338d2be5f /AndroidManifest.xml
parentc4de1ec267c9ea062da71674a72c8da5e93bd84a (diff)
downloadunexpected-keyboard-35b4e442ab2e2b236e785f52dfa5d59439eb037e.tar.gz
unexpected-keyboard-35b4e442ab2e2b236e785f52dfa5d59439eb037e.zip
Add a launchable explanatory activity
This activity points to the system settings page for enabling input methods. This is purely a shortcut but is expected by many users. It could be made more useful in the future or hidden whenever the keyboard is enabled.
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml6
1 files changed, 6 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index df934f5..f268559 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -13,6 +13,12 @@
<action android:name="android.intent.action.MAIN"/>
</intent-filter>
</activity>
+ <activity android:name="juloo.keyboard2.LauncherActivity" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/android:Theme.DeviceDefault" android:exported="true" android:directBootAware="true">
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN"/>
+ <category android:name="android.intent.category.LAUNCHER"/>
+ </intent-filter>
+ </activity>
</application>
<uses-permission android:name="android.permission.VIBRATE"/>
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>