abouttreesummaryrefslogcommitdiff
diff options
context:
space:
mode:
authorJules Aguillon2021-01-04 23:48:54 +0100
committerJules Aguillon2021-01-04 23:48:54 +0100
commit3c04e0eebb400c51ab8196daba96b93d3b414b1a (patch)
tree74ff5c3023b48f3ed836d8cd5f495b0ae15d1126
parent539c7fcd7442a3da77bd61d7662b38f879ae4651 (diff)
downloadunexpected-keyboard-3c04e0eebb400c51ab8196daba96b93d3b414b1a.tar.gz
unexpected-keyboard-3c04e0eebb400c51ab8196daba96b93d3b414b1a.zip
Use full class path in AndroidManifest
Allows to make debug variant of the app by only changing the `package` attribute.
-rw-r--r--AndroidManifest.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 45dee7d..1ec1d79 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -13,7 +13,7 @@
android:icon="@drawable/ic_launcher"
android:hardwareAccelerated="false">
- <service android:name="Keyboard2"
+ <service android:name="juloo.keyboard2.Keyboard2"
android:label="@string/app_name"
android:permission="android.permission.BIND_INPUT_METHOD">
<intent-filter>
@@ -23,7 +23,7 @@
android:resource="@xml/method" />
</service>
- <activity android:name="SettingsActivity"
+ <activity android:name="juloo.keyboard2.SettingsActivity"
android:icon="@drawable/ic_launcher"
android:label="@string/settings_activity_label">
<intent-filter>