Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1 | chris | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
||
| 3 | package="com.gebauz.Uhr" |
||
| 4 | android:versionCode="1" |
||
| 5 | android:versionName="1.0"> |
||
| 6 | <application android:icon="@drawable/icon" android:label="@string/app_name"> |
||
| 7 | |||
| 8 | <!-- Broadcast Receiver that will process AppWidget updates --> |
||
| 9 | <receiver android:name=".UhrWidget" android:label="@string/app_name"> |
||
| 10 | <intent-filter> |
||
| 11 | <action android:name="android.appwidget.action.APPWIDGET_UPDATE" /> |
||
| 12 | <!-- action android:name="com.gebauz.Uhr.ACTION_WIDGET_RECEIVER" /--> |
||
| 13 | </intent-filter> |
||
| 14 | <meta-data android:name="android.appwidget.provider" android:resource="@xml/uhr_widget_provider" /> |
||
| 15 | </receiver> |
||
| 16 | |||
| 17 | <activity android:name=".PopupActivity" android:theme="@style/MyFloatingWindow"> |
||
| 18 | <intent-filter> |
||
| 19 | <action android:name="com.gebauz.Uhr.ACTION_WIDGET_POPUP" /> |
||
| 20 | </intent-filter> |
||
| 21 | </activity> |
||
| 22 | |||
| 23 | </application> |
||
| 24 | <uses-sdk android:minSdkVersion="7" /> |
||
| 25 | |||
| 26 | </manifest> |