project_files/Android-build/SDL-android-project/AndroidManifest.xml
branchhedgeroid
changeset 5397 4ae1b082e4ba
parent 5333 c239cb473a3f
child 5435 d060bfb6f670
equal deleted inserted replaced
5395:5caae9d7e12e 5397:4ae1b082e4ba
     1 <?xml version="1.0" encoding="utf-8"?>
     1 <?xml version="1.0" encoding="utf-8"?>
     2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
     2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
     3       package="org.hedgewars"
     3       package="org.hedgewars.mobile"
     4       android:versionCode="1"
     4       android:versionCode="1"
     5       android:versionName="1.0">
     5       android:versionName="1.0">
       
     6     <uses-sdk android:targetSdkVersion="8" android:minSdkVersion="5"></uses-sdk>
       
     7     <uses-permission android:name="android.permission.INTERNET"></uses-permission>
       
     8     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
     6     <application android:label="@string/app_name" android:icon="@drawable/icon">
     9     <application android:label="@string/app_name" android:icon="@drawable/icon">
     7         <activity android:name="SDLActivity"
    10         <activity android:name=".MainActivity"
     8                   android:label="@string/app_name"
    11                   android:label="@string/app_name"
     9  		  android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
    12  		  		  android:theme="@android:style/Theme"
    10 		  android:screenOrientation='landscape'>
    13  		  		  android:launchMode="singleTask">
    11             <intent-filter>
    14             <intent-filter>
    12                 <action android:name="android.intent.action.MAIN" />
    15                 <action android:name="android.intent.action.MAIN" />
    13                 <category android:name="android.intent.category.LAUNCHER" />
    16                 <category android:name="android.intent.category.LAUNCHER" />
    14             </intent-filter>
    17             </intent-filter>
    15         </activity>
    18         </activity>
       
    19         <activity android:name=".SDLActivity"
       
    20                   android:label="@string/app_name"
       
    21  		  android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
       
    22 		  android:screenOrientation='landscape'>
       
    23         </activity>
       
    24         
       
    25         <activity android:name=".DownloadActivity"
       
    26                   android:label="@string/app_name"
       
    27 				  android:theme="@android:style/Theme.Dialog"
       
    28  		  		  android:launchMode="singleTask">
       
    29         </activity>
       
    30         
       
    31         <service android:name=".DownloadService"/>
    16     </application>
    32     </application>
    17 </manifest> 
    33 </manifest>