summaryrefslogtreecommitdiff
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authormcbyte-it <[email protected]>2013-05-21 16:59:43 +0300
committermcbyte-it <[email protected]>2013-05-21 16:59:43 +0300
commit0c855cb0b145906ad9e106b1d6dc942eee48655a (patch)
treecf3467a6a1158cdf8a435ae6ab02e8293442a1ad /AndroidManifest.xml
parentcb743f8230fd972d39dac016bd4b6af2d551f82d (diff)
Added service for DashClock extension
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml14
1 files changed, 13 insertions, 1 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 76f10df3..09a48fc9 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -203,7 +203,19 @@
<service
android:name=".widget.WidgetUpdateService"
android:enabled="true" />
+
+ <service android:name=".DashClock"
+ android:icon="@drawable/icon"
+ android:label="@string/app_name"
+ android:permission="com.google.android.apps.dashclock.permission.READ_EXTENSION_DATA">
+ <intent-filter>
+ <action android:name="com.google.android.apps.dashclock.Extension" />
+ </intent-filter>
+ <meta-data android:name="protocolVersion" android:value="1" />
+ <meta-data android:name="description"
+ android:value="@string/app_name" />
+ </service>
</application>
-</manifest> \ No newline at end of file
+</manifest>