Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 345 | chris | 1 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 2 | package="com.gebauz.minimalistclock" |
||
| 3 | android:versionCode="1" |
||
| 4 | android:versionName="1.0" > |
||
| 5 | |||
| 6 | <uses-sdk |
||
| 7 | android:minSdkVersion="8" |
||
| 8 | android:targetSdkVersion="15" /> |
||
| 9 | |||
| 10 | <application android:label="@string/app_name" |
||
| 11 | android:icon="@drawable/ic_launcher" |
||
| 12 | android:theme="@style/AppTheme"> |
||
| 13 | |||
| 14 | <receiver android:name="MinimalistClockWidgetProvider" > |
||
| 15 | <intent-filter > |
||
| 16 | <action |
||
| 17 | android:name="android.appwidget.action.APPWIDGET_UPDATE" /> |
||
| 18 | </intent-filter> |
||
| 19 | <intent-filter> |
||
| 20 | <action android:name="MY_OWN_WIDGET_UPDATE" /> |
||
| 21 | </intent-filter> |
||
| 22 | |||
| 23 | <meta-data |
||
| 24 | android:name="android.appwidget.provider" |
||
| 25 | android:resource="@xml/widget_info" /> |
||
| 26 | </receiver> |
||
| 27 | <activity android:name="ConfigActivity" |
||
| 28 | android:label="Minimalist Clock Configuration"> |
||
| 29 | <intent-filter> |
||
| 30 | <action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" /> |
||
| 31 | </intent-filter> |
||
| 32 | </activity> |
||
| 33 | |||
| 34 | </application> |
||
| 35 | |||
| 36 | </manifest> |