|  | <?xml version="1.0" encoding="utf-8"?> | 
						
						
							|  | <!-- | 
						
						
							|  | *   raylib Android | 
						
						
							|  | * | 
						
						
							|  | *   raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) | 
						
						
							|  | * | 
						
						
							|  | *   Copyright (c) 2014 Ramon Santamaria (Ray San - raysan@raysanweb.com) | 
						
						
							|  | * | 
						
						
							|  | --> | 
						
						
							|  | <manifest xmlns:android="http://schemas.android.com/apk/res/android"  | 
						
						
							|  |         package="com.raysan5.raylib"  | 
						
						
							|  |         android:versionCode="1"  | 
						
						
							|  |         android:versionName="1.0" > | 
						
						
							|  | 
 | 
						
						
							|  |     <uses-sdk android:minSdkVersion="9" android:targetSdkVersion="17" /> | 
						
						
							|  |     <uses-feature android:glEsVersion="0x00020000" android:required="true" /> | 
						
						
							|  |      | 
						
						
							|  |     <application android:label="@string/app_name" android:icon="@drawable/icon" > | 
						
						
							|  |         <activity android:name="raylib" android:label="@string/app_name"> | 
						
						
							|  |                 <!--android:screenOrientation="landscape" //Set at runtime --> | 
						
						
							|  |             <meta-data android:name="android.app.lib_name" android:value="@string/app_name" /> | 
						
						
							|  |             <intent-filter> | 
						
						
							|  |                 <action android:name="android.intent.action.MAIN" /> | 
						
						
							|  |                 <category android:name="android.intent.category.LAUNCHER" /> | 
						
						
							|  |             </intent-filter> | 
						
						
							|  |         </activity> | 
						
						
							|  |     </application> | 
						
						
							|  |      | 
						
						
							|  | </manifest> |