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
|
|
|
|
2010-11-05 23:31:27 +00:00
|
|
|
<service android:name=".RockboxService"/>
|
|
|
|
|
|
|
|
<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
|
|
|
|
2010-11-05 23:31:27 +00:00
|
|
|
</application>
|
2010-10-31 15:32:57 +00:00
|
|
|
|
2010-11-05 23:31:27 +00:00
|
|
|
<uses-sdk android:minSdkVersion="4" />
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
|
2010-10-31 15:32:57 +00:00
|
|
|
|
2010-09-12 09:50:45 +00:00
|
|
|
</manifest>
|