summaryrefslogtreecommitdiff
path: root/ui/widget/src/main/AndroidManifest.xml
blob: c0f03b6cc7d75e7037a7be18c1e6969542fc51b9 (plain)
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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

    <application>
        <activity
            android:name=".WidgetConfigActivity"
            android:label="@string/widget_settings"
            android:exported="true">
            <intent-filter>
                <action android:name="android.appwidget.action.APPWIDGET_CONFIGURE"/>
            </intent-filter>
        </activity>

        <receiver
            android:name=".PlayerWidget"
            android:exported="true">
            <intent-filter>
                <action android:name="android.appwidget.action.APPWIDGET_UPDATE"/>
                <action android:name="de.danoeh.antennapod.FORCE_WIDGET_UPDATE"/>
                <action android:name="de.danoeh.antennapod.STOP_WIDGET_UPDATE"/>
            </intent-filter>
            <meta-data
                    android:name="android.appwidget.provider"
                    android:resource="@xml/player_widget_info"/>
        </receiver>
    </application>
</manifest>