Remove old kluge that makes little difference with the new arm toolchain.
[maemo-rb.git] / android / AndroidManifest.xml
blobfb43f8652529584f6684aae15f830a1a075f1486
1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3       package="org.rockbox"
4       android:versionCode="1"
5       android:versionName="1.0">
6     <application android:icon="@drawable/launcher" android:label="@string/app_name" android:debuggable="true">
7         <activity android:name=".RockboxActivity"
8                   android:label="@string/app_name"
9                   android:screenOrientation="portrait"
10                   android:configChanges="orientation|keyboardHidden" >
11             <intent-filter>
12                 <action android:name="android.intent.action.MAIN" />
13                 <category android:name="android.intent.category.LAUNCHER" />
14             </intent-filter>
15         </activity>
16         <service android:name=".RockboxService"/>
18     </application>
19 <uses-sdk android:minSdkVersion="4" />
20 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
21 </manifest>