2010-08-02 20:34:47 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2010-11-05 23:31:27 +00:00
|
|
|
package="org.rockbox"
|
|
|
|
android:versionCode="1"
|
|
|
|
android:versionName="1.0"
|
|
|
|
android:installLocation="auto">
|
|
|
|
<application android:icon="@drawable/launcher"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:debuggable="true">
|
|
|
|
|
|
|
|
<activity android:name=".RockboxActivity"
|
|
|
|
android:launchMode="singleTask"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
android:configChanges="orientation|keyboardHidden" >
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2010-08-02 20:34:47 +00:00
|
|
|
|
2011-03-09 18:04:05 +00:00
|
|
|
<service android:name=".RockboxService">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<action android:name="android.intent.action.MEDIA_BUTTON" />
|
2011-03-09 18:46:55 +00:00
|
|
|
<action android:name="org.rockbox.ResendTrackUpdateInfo" />
|
2011-03-09 18:04:05 +00:00
|
|
|
</intent-filter>
|
|
|
|
</service>
|
2010-11-05 23:31:27 +00:00
|
|
|
|
|
|
|
<receiver android:name=".Helper.MediaButtonReceiver$MediaReceiver"
|
|
|
|
android:enabled="true"
|
|
|
|
android:exported="true">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MEDIA_BUTTON" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2010-10-31 15:32:57 +00:00
|
|
|
|
2011-01-29 20:47:32 +00:00
|
|
|
<!-- Widgets -->
|
|
|
|
<receiver android:name=".widgets.RockboxWidgetProvider4x1"
|
|
|
|
android:label="@string/appwidget_label_4x1">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
|
|
|
|
<action android:name="org.rockbox.TrackUpdateInfo" />
|
|
|
|
<action android:name="org.rockbox.TrackFinish" />
|
|
|
|
<action android:name="org.rockbox.UpdateState" />
|
|
|
|
</intent-filter>
|
|
|
|
<meta-data android:name="android.appwidget.provider"
|
|
|
|
android:resource="@xml/appwidget_provider_4x1" />
|
|
|
|
</receiver>
|
|
|
|
|
|
|
|
<receiver android:name=".widgets.RockboxWidgetProvider2x2"
|
|
|
|
android:label="@string/appwidget_label_2x2">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
|
|
|
|
<action android:name="org.rockbox.TrackUpdateInfo" />
|
|
|
|
<action android:name="org.rockbox.TrackFinish" />
|
|
|
|
<action android:name="org.rockbox.UpdateState" />
|
|
|
|
</intent-filter>
|
|
|
|
<meta-data android:name="android.appwidget.provider"
|
|
|
|
android:resource="@xml/appwidget_provider_2x2" />
|
|
|
|
</receiver>
|
|
|
|
|
2011-02-26 21:00:38 +00:00
|
|
|
<receiver android:name=".widgets.RockboxWidgetProvider3x3"
|
|
|
|
android:label="@string/appwidget_label_3x3">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
|
|
|
|
<action android:name="org.rockbox.TrackUpdateInfo" />
|
|
|
|
<action android:name="org.rockbox.TrackFinish" />
|
|
|
|
<action android:name="org.rockbox.UpdateState" />
|
|
|
|
</intent-filter>
|
|
|
|
<meta-data android:name="android.appwidget.provider"
|
|
|
|
android:resource="@xml/appwidget_provider_3x3" />
|
|
|
|
</receiver>
|
2011-01-29 20:47:32 +00:00
|
|
|
<!-- Widget configuration -->
|
|
|
|
<activity android:name=".widgets.RockboxWidgetConfigure">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2010-11-12 21:04:13 +00:00
|
|
|
|
2010-11-05 23:31:27 +00:00
|
|
|
</application>
|
2010-10-31 15:32:57 +00:00
|
|
|
|
2011-08-14 13:23:46 +00:00
|
|
|
<uses-sdk android:minSdkVersion="5" />
|
2010-11-05 23:31:27 +00:00
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
|
2010-11-12 21:04:13 +00:00
|
|
|
<uses-permission android:name="android.permission.READ_PHONE_STATE"></uses-permission>
|
2010-09-12 09:50:45 +00:00
|
|
|
</manifest>
|