1<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3      package="com.jme3.androiddemo"
4      android:versionCode="6"
5      android:versionName="1.2.2">
6      
7    <uses-sdk android:targetSdkVersion="8" android:minSdkVersion="8" />      
8    
9    <!-- Tell the system that you need ES 2.0. -->
10    <uses-feature android:glEsVersion="0x00020000" android:required="true" />
11
12    <!-- Tell the system that you need distinct touches (for the zoom gesture). -->
13    <uses-feature android:name="android.hardware.touchscreen.multitouch.distinct" android:required="true" />
14
15    <application android:icon="@drawable/icon" android:label="@string/app_name">
16        <activity android:name=".DemoMainActivity"
17                  android:label="@string/app_name">
18            <intent-filter>
19                <action android:name="android.intent.action.MAIN" />
20                <category android:name="android.intent.category.LAUNCHER" />
21            </intent-filter>
22        </activity>
23        
24        <activity android:name=".DemoAndroidHarness"
25                  android:label="@string/app_name">
26        </activity>
27        
28    </application>
29</manifest>