vanilla/AndroidManifest.xml
2010-04-23 22:14:35 -05:00

51 lines
1.9 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.kreed.vanilla"
android:versionName="0.1" android:versionCode="10">
<application
android:icon="@drawable/icon"
android:label="@string/app_name"
android:name="ContextApplication">
<activity
android:name="FullPlaybackActivity"
android:theme="@style/NoBackground"
android:launchMode="singleTop" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="SongSelector"
android:theme="@android:style/Theme.Black.NoTitleBar" />
<activity
android:name="MiniPlaybackActivity"
android:theme="@android:style/Theme.Dialog"
android:excludeFromRecents="true"
android:launchMode="singleInstance" />
<receiver
android:name=".OneCellWidget"
android:label="Vanilla Music 1x1">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
<action android:name="org.kreed.vanilla.event.CHANGED" />
<action android:name="org.kreed.vanilla.event.REPLACE_SONG" />
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/one_cell_widget" />
</receiver>
<receiver android:name="MediaButtonReceiver" >
<intent-filter android:priority="1000">
<action android:name="android.intent.action.MEDIA_BUTTON" />
<action android:name="org.kreed.vanilla.action.ENABLE_RECEIVER" />
</intent-filter>
</receiver>
<service android:name="PlaybackService" />
<activity android:name="PreferencesActivity" />
</application>
<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="7" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<supports-screens android:smallScreens="true" />
</manifest>