summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorSteve Slaven <bpk@hoopajoo.net>2011-02-15 17:32:44 (GMT)
committerSteve Slaven <bpk@hoopajoo.net>2011-02-15 17:32:44 (GMT)
commite84d1dc3b145751d039a4082fe98c0b8006b68f7 (patch)
tree4ad4c5c03807455d63a09d089b75dd25f4f58e8b /AndroidManifest.xml
parenta4305e26768cbc7d8ff3ba70327f91bfee7cc323 (diff)
downloadSoftKeys-e84d1dc3b145751d039a4082fe98c0b8006b68f7.zip
SoftKeys-e84d1dc3b145751d039a4082fe98c0b8006b68f7.tar.gz
SoftKeys-e84d1dc3b145751d039a4082fe98c0b8006b68f7.tar.bz2
Add bootup option if you want the service without running as your default
launcher, needed to restructure some initialization code because of that since Keys is not the primary entry point anymore
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml8
1 files changed, 7 insertions, 1 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 7307a44..0d6be4b 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -66,7 +66,13 @@
</intent-filter>
-->
</activity>
-
+
+ <receiver android:name=".BootReceiver">
+ <intent-filter>
+ <action android:name ="android.intent.action.BOOT_COMPLETED"/>
+ </intent-filter>
+ </receiver>
+
<service android:name=".SoftKeysService"/>
</application>
<uses-sdk android:minSdkVersion="4" />