A bit of indentation/whitespace changes in the xml files.
[maemo-rb.git] / android / AndroidManifest.xml
bloba05f38258416d1bb2504f9aac03a010917142fce
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" 
8                 android:label="@string/app_name" 
9                 android:debuggable="true">
11                 <activity android:name=".RockboxActivity"
12                         android:launchMode="singleTask"
13                         android:label="@string/app_name"
14                         android:screenOrientation="portrait"
15                         android:configChanges="orientation|keyboardHidden" >
16                         <intent-filter>
17                                 <action android:name="android.intent.action.MAIN" />
18                                 <category android:name="android.intent.category.LAUNCHER" />
19                         </intent-filter>
20                 </activity>             
22                 <activity android:name="KeyboardActivity" 
23                                   android:theme="@android:style/Theme.Dialog">
24                 </activity>
25                 
26                 <activity android:name="YesnoActivity" 
27                                   android:theme="@android:style/Theme.Dialog">
28                 </activity>
30                 <service android:name=".RockboxService"/>
32                 <receiver android:name=".Helper.MediaButtonReceiver$MediaReceiver"
33                         android:enabled="true"
34                         android:exported="true">
35                         <intent-filter>
36                                 <action android:name="android.intent.action.MEDIA_BUTTON" />
37                         </intent-filter>
38                 </receiver>
40         </application>
42         <uses-sdk android:minSdkVersion="4" />
43         <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
45 </manifest>