The Android Manifest

We have seen all of the features in isolation, for reference we also include the full files from which the application is built starting with the manifest file.

 1 <?xml version="1.0" encoding="utf-8"?>
 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
 3       package="com.vizit"
 4       android:versionCode="1"
 5       android:versionName="1.0">
 6     <application android:theme="@android:style/Theme.NoTitleBar">
 7         <uses-feature android:glEsVersion="0x00020000" android:required="true" />
 8         <activity android:name=".ESProjection">
 9             <intent-filter>
10                 <action android:name="android.intent.action.MAIN" />
11                 <category android:name="android.intent.category.LAUNCHER" />
12             </intent-filter>
13         </activity>
14     </application>
15 </manifest> 

Notes

A very brief and almost standard android manifest file. The really important bit is

    <uses-feature android:glEsVersion="0x00020000" android:required="true" />