Advertisement
Guest User

Untitled

a guest
Nov 20th, 2012
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.24 KB | None | 0 0
  1. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  2.    package="my.package"
  3.    sharedUserId="com.jogamp.Community"
  4.    android:versionCode="914011"
  5.    android:versionName="2.0-rc-b66-20121101"
  6.    >
  7.    
  8.     <uses-feature android:name="android.hardware.touchscreen" android:required="false" />
  9.    
  10.     <uses-sdk android:minSdkVersion="9" android:targetSdkVersion="15" />
  11.    
  12.     <application android:label="@string/app_name"
  13.        android:icon="@drawable/ic_launcher"
  14.        android:theme="@style/AppTheme">
  15.        
  16.        <uses-library android:name="com.jogamp.common" android:required="true" />
  17.        <uses-library android:name="javax.media.opengl" android:required="true" />
  18.        <uses-library android:name="jogamp.android.launcher" android:required="true" />
  19.        
  20.         <activity android:name=".NEWTRedSquareES2ActivityLauncher"
  21.                  android:theme="@android:style/Theme.NoDisplay"
  22.                  android:persistent="false"
  23.                  >
  24.             <intent-filter>
  25.                 <action android:name="android.intent.action.MAIN" />
  26.                 <category android:name="android.intent.category.LAUNCHER" />
  27.             </intent-filter>
  28.         </activity>
  29.     </application>
  30.  
  31. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement