Remove the use of the instance field in non-anymore-static methods
[kugel-rb.git] / android / AndroidManifest.xml
blobc52cac2753fb85bd8f29c19cac2122836cf27b32
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       android:installLocation="auto">
7     <application android:icon="@drawable/launcher" android:label="@string/app_name" android:debuggable="true">
8         <activity android:name=".RockboxActivity"
9                   android:launchMode="singleTask"
10                   android:label="@string/app_name"
11                   android:screenOrientation="portrait"
12                   android:configChanges="orientation|keyboardHidden" >
13             <intent-filter>
14                 <action android:name="android.intent.action.MAIN" />
15                 <category android:name="android.intent.category.LAUNCHER" />
16             </intent-filter>
17         </activity>
18         <service android:name=".RockboxService"/>
20     <activity android:name="KeyboardActivity" android:launchMode="singleTop"></activity>
21 </application>
22 <uses-sdk android:minSdkVersion="4" />
23 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
24 </manifest>