lazarus-ccr/bindings/android-ndk/examples/opengltest/android/AndroidManifest.xml
sekelsenmat 2290c71949 android opengl test finally working
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2117 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2011-11-10 12:16:58 +00:00

23 lines
1.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.pascal.opengltest"
android:versionCode="1"
android:versionName="1.0">
<uses-permission android:name="android.permission.VIBRATE" />
<supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:anyDensity="true" />
<uses-sdk android:minSdkVersion="10" android:targetSdkVersion="10" />
<application android:label="@string/app_name"
android:icon="@drawable/icon"
android:debuggable="True">
<activity android:name="android.app.NativeActivity"
android:configChanges="orientation|keyboardHidden"
android:label="@string/app_name"
android:launchMode="singleTop">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>