diff options
| author | raysan5 <raysan5@gmail.com> | 2014-09-16 23:10:27 +0200 |
|---|---|---|
| committer | raysan5 <raysan5@gmail.com> | 2014-09-16 23:10:27 +0200 |
| commit | 983cc8d291b7bf70d60e9b6dbbb6526b7c9e58bb (patch) | |
| tree | c77755a7df6335ae9747fb9a54df7fec686640e8 /src_android/AndroidManifest.xml | |
| parent | 8e2680f41fbab871cfdbb01fc945803f9af6e12a (diff) | |
| download | raylib-983cc8d291b7bf70d60e9b6dbbb6526b7c9e58bb.tar.gz raylib-983cc8d291b7bf70d60e9b6dbbb6526b7c9e58bb.zip | |
Android project to compile raylib src
Diffstat (limited to 'src_android/AndroidManifest.xml')
| -rw-r--r-- | src_android/AndroidManifest.xml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src_android/AndroidManifest.xml b/src_android/AndroidManifest.xml new file mode 100644 index 00000000..6007eda3 --- /dev/null +++ b/src_android/AndroidManifest.xml @@ -0,0 +1,29 @@ +<?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>
\ No newline at end of file |
