3dphotoshoot

annotate android/manifest.xml.in @ 27:3d082c566b53

fixed all the bugs, pc version works
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 18 Jun 2015 04:32:25 +0300
parents dccbd7d65517
children
rev   line source
nuclear@0 1 <?xml version="1.0" encoding="utf-8"?>
nuclear@0 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
nuclear@0 3 package="com.mutantstargoat.$APPNAME"
nuclear@0 4 android:versionCode="1"
nuclear@0 5 android:versionName="1.0">
nuclear@0 6
nuclear@18 7 <uses-sdk android:minSdkVersion="9" android:targetSdkVersion="19"/>
nuclear@3 8
nuclear@3 9 <uses-permission android:name="android.permission.CAMERA" />
nuclear@3 10 <uses-feature android:name="android.hardware.camera" />
nuclear@10 11 <uses-feature android:glEsVersion="0x00020000" android:required="true" />
nuclear@0 12
nuclear@0 13 <application android:label="$APPNAME" android:debuggable="true">
nuclear@9 14 <!-- android:icon="@drawable/ic_launcher" -->
nuclear@0 15
nuclear@7 16 <activity android:name="MainActivity" android:label="$APPTITLE"
nuclear@22 17 android:screenOrientation="landscape"
nuclear@22 18 android:theme="@android:style/Theme.Holo.NoActionBar.Fullscreen" >
nuclear@0 19
nuclear@0 20 <meta-data android:name="android.app.lib_name" android:value="$APPNAME"/>
nuclear@0 21
nuclear@0 22 <intent-filter>
nuclear@0 23 <action android:name="android.intent.action.MAIN" />
nuclear@0 24 <category android:name="android.intent.category.LAUNCHER" />
nuclear@0 25 </intent-filter>
nuclear@0 26 </activity>
nuclear@0 27 </application>
nuclear@0 28 </manifest>