Subversion Repositories AndroidProjects

Rev

Blame | Last modification | View Log | RSS feed

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
     package="com.gebauz.Uhr"
     android:versionCode="1"
     android:versionName="1.0">
    <application android:icon="@drawable/icon" android:label="@string/app_name">
   
    <!-- Broadcast Receiver that will process AppWidget updates -->
    <receiver android:name=".UhrWidget" android:label="@string/app_name">
        <intent-filter>
                <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
                <!-- action android:name="com.gebauz.Uhr.ACTION_WIDGET_RECEIVER" /-->                                  
        </intent-filter>
        <meta-data android:name="android.appwidget.provider" android:resource="@xml/uhr_widget_provider" />
    </receiver>
   
    <activity android:name=".PopupActivity" android:theme="@style/MyFloatingWindow">
        <intent-filter>
                <action android:name="com.gebauz.Uhr.ACTION_WIDGET_POPUP" />
        </intent-filter>
    </activity>    

    </application>
    <uses-sdk android:minSdkVersion="7" />

</manifest>