forked from adamwg/volume-widget
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
30 lines (28 loc) · 1.15 KB
/
Copy pathAndroidManifest.xml
File metadata and controls
30 lines (28 loc) · 1.15 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="ca.xvx.volume"
android:versionCode="5"
android:versionName="2.0">
<application android:label="@string/all_volume_title" android:icon="@drawable/icon">
<receiver android:name="VolumeWidgetProvider">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
<action android:name="android.media.VOLUME_CHANGED_ACTION" />
<action android:name="ca.xvx.VOLUME_DOWN" />
<action android:name="ca.xvx.VOLUME_UP" />
<action android:name="ca.xvx.VOLUME_SET" />
</intent-filter>
<meta-data android:name="android.appwidget.provider"
android:resource="@xml/widget_info" />
</receiver>
<activity android:name="VolumeWidgetConfigure"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
</intent-filter>
</activity>
</application>
<uses-sdk android:minSdkVersion="6"
android:targetSdkVersion="15" />
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"></uses-permission>
</manifest>