Skip to content

Instantly share code, notes, and snippets.

@MichaelSnowden
Created November 16, 2013 01:23
Show Gist options
  • Save MichaelSnowden/7494630 to your computer and use it in GitHub Desktop.
Save MichaelSnowden/7494630 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="demo.project"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:targetSdkVersion="8" android:minSdkVersion="18"></uses-sdk>
<uses-feature android:glEsVersion="0x00020000" android:required="true"></uses-feature>
<application android:label="@string/app_name" android:icon="@drawable/ic_launcher">
<activity android:name="DemoProjectActivity"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
</manifest>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment