-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
31 lines (28 loc) · 1.37 KB
/
AndroidManifest.xml
File metadata and controls
31 lines (28 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.swiggins.rssfordashclock"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="17" android:targetSdkVersion="17" />
<uses-permission android:name="android.permission.INTERNET" />
<application android:label="@string/app_name" >
<service android:name="RssDashClockService"
android:icon="@drawable/ic_extension_example"
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/extension_description" />
<meta-data android:name="settingsActivity"
android:value=".RssDashClockSettingsActivity" />
</service>
<activity android:name=".RssDashClockSettingsActivity"
android:icon="@drawable/ic_extension_example"
android:label="@string/title_settings"
android:exported="true" >
</activity>
</application>
</manifest>