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"
|
|
|
|
package="org.rockbox"
|
|
|
|
android:versionCode="1"
|
|
|
|
android:versionName="1.0">
|
2010-08-06 00:53:02 +00:00
|
|
|
<application android:icon="@drawable/launcher" android:label="@string/app_name" android:debuggable="true">
|
2010-08-02 20:34:47 +00:00
|
|
|
<activity android:name=".RockboxActivity"
|
2010-08-03 23:23:33 +00:00
|
|
|
android:label="@string/app_name"
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
android:configChanges="orientation|keyboardHidden" >
|
2010-08-02 20:34:47 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
2010-08-03 22:56:24 +00:00
|
|
|
</activity>
|
|
|
|
<service android:name=".RockboxService"/>
|
2010-08-02 20:34:47 +00:00
|
|
|
|
|
|
|
</application>
|
|
|
|
<uses-sdk android:minSdkVersion="4" />
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
|
|
|
|
</manifest>
|