source: trunk/build/android/AndroidManifest.xml @ 2579

Last change on this file since 2579 was 2579, checked in by sam, 10 years ago

android: switch to NativeActivity instead of rolling our own Java crap;
no known regressions yet.

  • Property svn:mime-type set to text/xml
File size: 1012 bytes
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3      package="net.lolengine.lol_@PROGRAM@"
4      android:versionCode="1"
5      android:versionName="1.0">
6    <application android:label="@string/app_name"
7                 android:icon="@drawable/icon">
8        <activity android:name="net.lolengine.LolActivity"
9                  android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
10                  android:screenOrientation="landscape"
11                  android:label="@string/app_name"
12                  android:launchMode="singleTask">
13            <meta-data android:name="android.app.lib_name"
14                    android:value="@PROGRAM@" />
15            <intent-filter>
16                <action android:name="android.intent.action.MAIN" />
17                <category android:name="android.intent.category.LAUNCHER" />
18            </intent-filter>
19        </activity>
20    </application>
21    <uses-sdk android:minSdkVersion="9" />
22</manifest>
Note: See TracBrowser for help on using the repository browser.